mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-28 12:00:25 +00:00
10 lines
276 B
HTML
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 %}
|