Show More
@@ -1,7 +1,6 b'' | |||
|
1 | 1 | {% extends "boards/base.html" %} |
|
2 | 2 | |
|
3 | 3 | {% load i18n %} |
|
4 | {% load cache %} | |
|
5 | 4 | |
|
6 | 5 | {% block head %} |
|
7 | 6 | <title>Neboard - {% trans "Tags" %}</title> |
@@ -9,23 +8,21 b'' | |||
|
9 | 8 | |
|
10 | 9 | {% block content %} |
|
11 | 10 | |
|
12 | {% cache 600 all_tags_list query %} | |
|
13 | <div class="post"> | |
|
14 |
{% |
|
|
15 | {% for tag in all_tags %} | |
|
16 | <div class="tag_item"> | |
|
17 |
{ |
|
|
18 | {{ tag.get_view }} | |
|
19 | {% endautoescape %} | |
|
20 | </div> | |
|
21 | {% endfor %} | |
|
22 | {% else %} | |
|
23 | {% trans 'No tags found.' %} | |
|
24 |
|
|
|
25 | {% if query %} | |
|
26 | <div><a href="{% url 'tags' %}">{% trans 'All tags' %}</a></div> | |
|
27 | {% endif %} | |
|
28 | </div> | |
|
29 | {% endcache %} | |
|
11 | <div class="post"> | |
|
12 | {% if all_tags %} | |
|
13 | {% for tag in all_tags %} | |
|
14 | <div class="tag_item"> | |
|
15 | {% autoescape off %} | |
|
16 | {{ tag.get_view }} | |
|
17 | {% endautoescape %} | |
|
18 | </div> | |
|
19 | {% endfor %} | |
|
20 | {% else %} | |
|
21 | {% trans 'No tags found.' %} | |
|
22 | {% endif %} | |
|
23 | {% if query %} | |
|
24 | <div><a href="{% url 'tags' %}">{% trans 'All tags' %}</a></div> | |
|
25 | {% endif %} | |
|
26 | </div> | |
|
30 | 27 | |
|
31 | 28 | {% endblock %} |
General Comments 0
You need to be logged in to leave comments.
Login now