Locatizations.
[wolnelektury.git] / src / catalogue / templates / catalogue / inline_tag_list.html
diff --git a/src/catalogue/templates/catalogue/inline_tag_list.html b/src/catalogue/templates/catalogue/inline_tag_list.html
deleted file mode 100644 (file)
index a552d91..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-{% load i18n %}
-{% load catalogue_tags %}
-
-{% if choices %}
-  {% if category_choices %}
-    <ul>
-      {% for tag in category_choices %}
-        <li class="active">{{ tag }} <a href="{% catalogue_url list_type choices -tag %}">X</a></li>
-      {% endfor %}
-    </ul>
-  {% endif %}
-{% endif %}
-{% if tags %}
-  <ul>
-    {% for tag in tags %}
-      <li><a href="{% catalogue_url list_type choices tag %}">{{ tag }}{% if tag.count %}&nbsp;({{ tag.count }}){% endif %}</a></li>
-    {% endfor %}
-  </ul>
-{% endif %}
-{% if other %}
-  <ul>
-    <li class="header">{% trans "Other" %}:</li>
-    {% for tag in other %}
-      <li class="other"><a href="{% catalogue_url list_type tag %}">{{ tag }}</a></li>
-    {% endfor %}
-  </ul>
-{% endif %}