Added tag_list template to repository.
authorMarek Stępniowski <marek@stepniowski.com>
Thu, 11 Sep 2008 16:27:30 +0000 (18:27 +0200)
committerMarek Stępniowski <marek@stepniowski.com>
Thu, 11 Sep 2008 16:27:30 +0000 (18:27 +0200)
wolnelektury/templates/catalogue/tag_list.html [new file with mode: 0644]

diff --git a/wolnelektury/templates/catalogue/tag_list.html b/wolnelektury/templates/catalogue/tag_list.html
new file mode 100644 (file)
index 0000000..00d99e5
--- /dev/null
@@ -0,0 +1,10 @@
+{% load catalogue_tags %}
+{% if one_tag %}
+    <p>Zobacz całą kategorię <a href="{% catalogue_url one_tag %}">{{ one_tag }}</a>.</p>
+{% else %}
+    <ul>
+        {% for tag in tags %}
+            <li><a href="{% catalogue_url choices tag %}">{{ tag }}&nbsp;({{ tag.count }})</a></li>
+        {% endfor %}
+    </ul>
+{% endif %}