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 @@ -1,7 +1,6 @@ {% extends "boards/base.html" %} {% load i18n %} -{% load cache %} {% block head %} Neboard - {% trans "Tags" %} @@ -9,23 +8,21 @@ {% block content %} -{% cache 600 all_tags_list query %} -
- {% if all_tags %} - {% for tag in all_tags %} -
- {% autoescape off %} - {{ tag.get_view }} - {% endautoescape %} -
- {% endfor %} - {% else %} - {% trans 'No tags found.' %} - {% endif %} - {% if query %} -
{% trans 'All tags' %}
- {% endif %} -
-{% endcache %} +
+ {% if all_tags %} + {% for tag in all_tags %} +
+ {% autoescape off %} + {{ tag.get_view }} + {% endautoescape %} +
+ {% endfor %} + {% else %} + {% trans 'No tags found.' %} + {% endif %} + {% if query %} +
{% trans 'All tags' %}
+ {% endif %} +
{% endblock %}