django-admin2/djadmin2/templates/admin2/bootstrap/index.html
2013-05-19 13:03:25 +02:00

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 %}