# HG changeset patch # User neko259 # Date 2016-12-28 16:03:50 # Node ID fedc25df4ae7e8780aab3f431ab4cb63b5da9c61 # Parent 49bdf576c573b002401b0ddfea64819aba39961e Cosmetic fix for tags page 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 %}