summaryrefslogtreecommitdiff
path: root/objectapp/templates/objectapp/tags/gbobjects.html
diff options
context:
space:
mode:
Diffstat (limited to 'objectapp/templates/objectapp/tags/gbobjects.html')
-rw-r--r--objectapp/templates/objectapp/tags/gbobjects.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/objectapp/templates/objectapp/tags/gbobjects.html b/objectapp/templates/objectapp/tags/gbobjects.html
new file mode 100644
index 0000000..16ba809
--- /dev/null
+++ b/objectapp/templates/objectapp/tags/gbobjects.html
@@ -0,0 +1,16 @@
+{% load i18n mptt_tags %}
+
+{% for objecttype, structure in objecttypes|tree_info %}
+ {% if structure.new_level %}<ul><li>{% else %}</li><li>{% endif %}
+ <a href="{{ objecttype.get_absolute_url }}" title="{{ objecttype.title }}">{{ objecttype.title }}</a>
+ {% blocktrans count objecttypes.gbobjects_published.count as gbobjects_count %}{{ gbobjects_count }} gbobject{% plural %}{{ gbobjects_count }} gbobjects{% endblocktrans %}
+
+ {% empty %}
+<ul>
+ <li>
+ {% trans "No subtypes yet." %}
+ </li>
+</ul>
+{% endfor %}
+
+