Code layout change.
[wolnelektury.git] / apps / catalogue / templates / catalogue / inline_tag_list.html
diff --git a/apps/catalogue/templates/catalogue/inline_tag_list.html b/apps/catalogue/templates/catalogue/inline_tag_list.html
deleted file mode 100755 (executable)
index 59b1acc..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-{% load i18n %}
-{% load catalogue_tags %}
-{% if one_tag %}
-    {% trans "See full category" %} <a href="{% catalogue_url one_tag %}">{{ one_tag }}</a>
-{% else %}
-       <ul>
-       {% if choices %}
-        {% for tag in tags %}
-            <li><a href="{% catalogue_url choices tag %}">{{ tag }}{% if tag.count %}&nbsp;({{ tag.count }}){% endif %}</a></li>
-        {% endfor %}
-        {% else %}
-        {% for tag in tags %}
-            <li><a href="{{ tag.get_absolute_url }}">{% if tag.count %}&nbsp;({{ tag.count }}){% endif %}</a></li>
-        {% endfor %}
-    {% endif %}
-    </ul>
-{% endif %}