summaryrefslogtreecommitdiff
path: root/objectapp/templates/objectapp/tags/tag_cloud.html
diff options
context:
space:
mode:
Diffstat (limited to 'objectapp/templates/objectapp/tags/tag_cloud.html')
-rw-r--r--objectapp/templates/objectapp/tags/tag_cloud.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/objectapp/templates/objectapp/tags/tag_cloud.html b/objectapp/templates/objectapp/tags/tag_cloud.html
new file mode 100644
index 0000000..fac0061
--- /dev/null
+++ b/objectapp/templates/objectapp/tags/tag_cloud.html
@@ -0,0 +1,13 @@
+{% load i18n %}
+
+<div>
+ <ul>
+ {% for tag in tags %}
+ <li>
+ <a href="{% url objectapp_tag_detail tag.name %}"
+ title="{% blocktrans count tag.count as gbobject_count %}{{ gbobject_count }} gbobject{% plural %}{{ gbobject_count }} gbobjects{% endblocktrans %}"
+ class="tag_{{ tag.font_size }}">{{ tag }}</a>
+ </li>
+ {% endfor %}
+ </ul>
+</div>