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

11 lines
246 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-18 16:33:43 +00:00
<tr><td><a href="">{{ 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 %}