aboutsummaryrefslogtreecommitdiffstats
path: root/templates/core/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/core/list.html')
-rw-r--r--templates/core/list.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/core/list.html b/templates/core/list.html
new file mode 100644
index 0000000..87428c0
--- /dev/null
+++ b/templates/core/list.html
@@ -0,0 +1,7 @@
+{% extends "manage.html" %}
+
+{% block detail_list %}
+{% for i in object_list %}
+ <li><a href="{{ i.get_absolute_url }}">{{ i }}</a></li>
+{% endfor %}
+{% endblock detail_list %}