Code layout change.
[wolnelektury.git] / src / catalogue / templates / catalogue / tag_list.html
diff --git a/src/catalogue/templates/catalogue/tag_list.html b/src/catalogue/templates/catalogue/tag_list.html
new file mode 100644 (file)
index 0000000..e0fecc0
--- /dev/null
@@ -0,0 +1,21 @@
+{% spaceless %}
+
+{% load i18n %}
+{% load catalogue_tags %}
+{% if one_tag %}
+    <p>{% trans "See full category" %} <a href="{% catalogue_url one_tag %}">{{ one_tag }}</a></p>
+{% 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 }}">{{ tag }}{% if tag.count %}&nbsp;({{ tag.count }}){% endif %}</a></li>
+        {% endfor %}
+        {% endif %}
+    </ul>
+{% endif %}
+
+{% endspaceless %}
\ No newline at end of file