django-admin2/djadmin2/templates/admin2/bootstrap/index.html

11 lines
276 B
HTML
Raw Normal View History

{% extends "admin2/bootstrap/base.html" %}
2013-05-18 10:49:08 +00:00
{% block content %}
2013-05-14 14:56:29 +00:00
<h1>Index</h1>
<table>
{% for modeladmin in registry.values %}
2013-05-19 07:47:42 +00:00
<tr><td><a href="{{ modeladmin.get_index_url }}">{{ modeladmin.verbose_name_plural }}</a></td></tr>
2013-05-14 14:56:29 +00:00
{% endfor %}
</table>
2013-05-18 10:49:08 +00:00
{% endblock content %}