diff options
Diffstat (limited to 'templates/object_list.html')
-rw-r--r-- | templates/object_list.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/object_list.html b/templates/object_list.html new file mode 100644 index 0000000..4021ad2 --- /dev/null +++ b/templates/object_list.html @@ -0,0 +1,15 @@ +{% extends "base.html" %}
+{% load link %}
+{% block title %}Troggle: all {{object_list.1.meta.object_name}} objects{%endblock%}
+
+{% block contentheader %}
+<h1>All {{object_list.0.object_name}} objects</h1>
+{% endblock contentheader %}
+
+{% block content %}
+ <ul>
+ {% for object in object_list %}
+ | {{ object|link }}
+ {% endfor %} |
+ </ul>
+{% endblock content %}
\ No newline at end of file |