##// END OF EJS Templates
Added "#" to tags in all tags list and in the navigation panel
neko259 -
r300:9dea0144 default
parent child Browse files
Show More
@@ -34,7 +34,7 b''
34 34 <a class="link" href="{% url 'index' %}">{% trans "All threads" %}</a>
35 35 {% for tag in tags %}
36 36 <a class="tag" href="{% url 'tag' tag_name=tag.name %}"
37 >{{ tag.name }}</a>
37 >#{{ tag.name }}</a>
38 38 {% endfor %}
39 39 <a class="tag" href="{% url 'tags' %}" title="{% trans 'Tag management' %}"
40 40 >[...]</a>
@@ -20,13 +20,13 b''
20 20 class="not_fav"></a>
21 21 {% endif %}
22 22 <a class="tag" href="{% url 'tag' tag.name %}">
23 {{ tag.name }}</a>
23 #{{ tag.name }}</a>
24 24 ({{ tag.get_post_count }} {% trans 'threads' %})
25 25 {% if tag.linked %}
26 26 ( +
27 27 {% for linked_tag in tag.get_linked_tags %}
28 28 <a class="tag" href="{% url 'tag' linked_tag.name %}">
29 {{ linked_tag.name }}
29 #{{ linked_tag.name }}
30 30 </a>
31 31 {% endfor %}
32 32 )
General Comments 0
You need to be logged in to leave comments. Login now