mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-04-03 23:00:34 +00:00
28 lines
702 B
HTML
28 lines
702 B
HTML
{% extends "admin2/bootstrap/base.html" %}
|
|
|
|
{% block content %}
|
|
<h3>Site administration</h3>
|
|
|
|
{% for app, registry in apps.items %}
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
<a href="TODO {{ app.get_index_url }}">{{ app|title }}</a>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for model_class, model_admin in registry.items %}
|
|
<tr>
|
|
<td>
|
|
<a href="{{ model_admin.get_index_url }}">
|
|
{{ model_admin.verbose_name_plural|title }}
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endfor %}
|
|
{% endblock content %}
|