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 %}
- {% if all_tags %}
- {% for tag in all_tags %}
-
- {% autoescape off %}
- {{ tag.get_view }}
- {% endautoescape %}
-
- {% endfor %}
- {% else %}
- {% trans 'No tags found.' %}
- {% endif %}
- {% if query %}
-
- {% 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 %}
+
+ {% endif %}
+
{% endblock %}