##// END OF EJS Templates
Cosmetic fix for tags page
neko259 -
r1746:fedc25df default
parent child Browse files
Show More
@@ -1,28 +1,27 b''
1 1 {% extends "boards/base.html" %}
2 2
3 3 {% load i18n %}
4 4
5 5 {% block head %}
6 6 <title>{{ site_name }} - {% trans "Tags" %}</title>
7 7 {% endblock %}
8 8
9 9 {% block content %}
10 10
11 11 {% regroup all_tags by get_first_letter as other_tag_list %}
12 12
13 <div class="post">
13 <div id="posts-table">
14 14 {% if all_tags %}
15 15 <div>
16 16 {% for letter in other_tag_list %}
17 <br />({{ letter.grouper|upper }})
17 ({{ letter.grouper|upper }})
18 18 {% for tag in letter.list %}
19 {% autoescape off %}
20 {{ tag.get_view }}{% if not forloop.last %},{% endif %}
21 {% endautoescape %}
19 {{ tag.get_view|safe }}{% if not forloop.last %},{% endif %}
22 20 {% endfor %}
21 {% if not forloop.last %}<br />{% endif %}
23 22 {% endfor %}
24 23 </div>
25 24 {% endif %}
26 25 </div>
27 26
28 27 {% endblock %}
General Comments 0
You need to be logged in to leave comments. Login now