2013-05-18 11:57:22 +00:00
|
|
|
{% extends "admin2/bootstrap/base.html" %}
|
2013-05-18 10:49:08 +00:00
|
|
|
|
|
|
|
|
{% block content %}
|
2013-05-19 11:03:25 +00:00
|
|
|
<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>
|
2013-05-17 21:40:04 +00:00
|
|
|
</table>
|
2013-05-19 11:03:25 +00:00
|
|
|
{% endfor %}
|
2013-05-18 10:49:08 +00:00
|
|
|
{% endblock content %}
|