diff --git a/boards/templates/boards/tags.html b/boards/templates/boards/tags.html --- a/boards/templates/boards/tags.html +++ b/boards/templates/boards/tags.html @@ -10,16 +10,15 @@ {% regroup all_tags by get_first_letter as other_tag_list %} -
+
{% if all_tags %}
{% for letter in other_tag_list %} -
({{ letter.grouper|upper }}) + ({{ letter.grouper|upper }}) {% for tag in letter.list %} - {% autoescape off %} - {{ tag.get_view }}{% if not forloop.last %},{% endif %} - {% endautoescape %} + {{ tag.get_view|safe }}{% if not forloop.last %},{% endif %} {% endfor %} + {% if not forloop.last %}
{% endif %} {% endfor %}
{% endif %}