# HG changeset patch # User neko259 # Date 2013-10-25 10:32:33 # Node ID 9dea0144e31dbbadb21fbf4420b0d88c9828ef6d # Parent 5a4e43dc7be192eced2471c324c53e1c458c0981 Added "#" to tags in all tags list and in the navigation panel diff --git a/boards/templates/boards/base.html b/boards/templates/boards/base.html --- a/boards/templates/boards/base.html +++ b/boards/templates/boards/base.html @@ -34,7 +34,7 @@ {% trans "All threads" %} {% for tag in tags %} {{ tag.name }} + >#{{ tag.name }} {% endfor %} [...] 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 @@ -20,13 +20,13 @@ class="not_fav">★ {% endif %} - {{ tag.name }} + #{{ tag.name }} ({{ tag.get_post_count }} {% trans 'threads' %}) {% if tag.linked %} ( + {% for linked_tag in tag.get_linked_tags %} - {{ linked_tag.name }} + #{{ linked_tag.name }} {% endfor %} )