summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/tag_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'gstudio/templates/gstudio/tag_list.html')
-rw-r--r--gstudio/templates/gstudio/tag_list.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/gstudio/templates/gstudio/tag_list.html b/gstudio/templates/gstudio/tag_list.html
new file mode 100644
index 0000000..eeac3ea
--- /dev/null
+++ b/gstudio/templates/gstudio/tag_list.html
@@ -0,0 +1,24 @@
+{% extends "gstudio/base.html" %}
+{% load i18n %}
+
+{% block meta-description %}{% trans "Tag list" %}{% endblock %}
+
+{% block title %}{% trans "Tags" %}{% endblock %}
+
+{% block content %}
+<h2>{% trans "Tag list" %}</h2>
+<div>
+ <ul>
+ {% for object in object_list %}
+ <li>
+ <a href="{% url gstudio_tag_detail object %}" title="{{ object }}">{{ object }}</a>
+ {% blocktrans count object.count as nodetype_count %}{{ nodetype_count }} nodetype{% plural %}{{ nodetype_count }} nodetypes{% endblocktrans %}
+ </li>
+ {% empty %}
+ <li>
+ {% trans "No tags yet." %}
+ </li>
+ {% endfor %}
+ </ul>
+</div>
+{% endblock %}