django-admin2/djadmin2/templates/admin2/bootstrap/index.html
2013-05-19 09:47:42 +02:00

10 lines
276 B
HTML

{% extends "admin2/bootstrap/base.html" %}
{% block content %}
<h1>Index</h1>
<table>
{% for modeladmin in registry.values %}
<tr><td><a href="{{ modeladmin.get_index_url }}">{{ modeladmin.verbose_name_plural }}</a></td></tr>
{% endfor %}
</table>
{% endblock content %}