# HG changeset patch # User Madhusudan.C.S # Date 1296553184 -19800 # Node ID 53b0071346c40447ed9eec89f4bf356371d15e03 # Parent 1bfa67f465b4f533546ff698c18f8f12dad46a9f comma in the display list should not appear after last tag element. diff -r 1bfa67f465b4 -r 53b0071346c4 pytask/templates/templatetags/_as_tags.html --- a/pytask/templates/templatetags/_as_tags.html Tue Feb 01 15:03:24 2011 +0530 +++ b/pytask/templates/templatetags/_as_tags.html Tue Feb 01 15:09:44 2011 +0530 @@ -1,5 +1,5 @@
{% for tag in tags %} - {{ tag }}, + {{ tag }}{% if not forloop.last %},{% endif %} {% endfor %}
\ No newline at end of file