there are no tags on main page
[wolnelektury.git] / wolnelektury / templates / catalogue / folded_tag_list.html
diff --git a/wolnelektury/templates/catalogue/folded_tag_list.html b/wolnelektury/templates/catalogue/folded_tag_list.html
deleted file mode 100644 (file)
index a6ff53a..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-{% load i18n %}
-{% load catalogue_tags %}
-{% if one_tag %}
-    <p>{% trans "Show full category" %} <a href="{% catalogue_url one_tag %}">{{ one_tag }}</a>.</p>
-{% else %}
-    <div class="shown-tags">
-        <ul class="shown-tags">
-            {% for tag in shown_tags %}
-                <li><a href="{% catalogue_url choices tag %}">{{ tag }}&nbsp;({{ tag.count }})</a></li>
-            {% endfor %}
-        </ul>
-        {% if some_tags_hidden %}
-            <p><a href="#" class="show-all-tags">{% trans "See more" %}</a></p>
-        {% endif %}
-    </div>
-    <div class="all-tags">
-        <ul>
-            {% for tag in tags %}
-                <li><a href="{% catalogue_url choices tag %}">{{ tag }}&nbsp;({{ tag.count }})</a></li>
-            {% endfor %}
-        </ul>
-        <p><a href="#" class="hide-all-tags">{% trans "Hide" %}</a></p>
-    </div>
-{% endif %}