summaryrefslogtreecommitdiff
path: root/objectapp/templates/objectapp/objecttype_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'objectapp/templates/objectapp/objecttype_list.html')
-rw-r--r--objectapp/templates/objectapp/objecttype_list.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/objectapp/templates/objectapp/objecttype_list.html b/objectapp/templates/objectapp/objecttype_list.html
new file mode 100644
index 00000000..c5306413
--- /dev/null
+++ b/objectapp/templates/objectapp/objecttype_list.html
@@ -0,0 +1,25 @@
+{% extends "objectapp/base.html" %}
+{% load i18n mptt_tags %}
+
+{% block meta-description %}{% trans "Objecttype list" %}{% endblock %}
+
+{% block title %}{% trans "Objecttypes" %}{% endblock %}
+
+{% block content %}
+<h2>{% trans "Objecttype list" %}</h2>
+<div>
+ {% for object, structure in object_list|tree_info %}
+ {% if structure.new_level %}<ul><li>{% else %}</li><li>{% endif %}
+ <a href="{{ object.get_absolute_url }}" title="{{ object }}">{{ object }}</a>
+ {% blocktrans count object.gbobjects_published.count as gbobject_count %}{{ gbobject_count }} gbobject{% plural %}{{ gbobject_count }} gbobjects{% endblocktrans %}
+ {% if object.description %}<br />{{ object.description|striptags|safe }}{% endif %}
+ {% for level in structure.closed_levels %}</li></ul>{% endfor %}
+ {% empty %}
+ <ul>
+ <li>
+ {% trans "No objecttypes yet." %}
+ </li>
+ </ul>
+ {% endfor %}
+</div>
+{% endblock %}