django-admin2/djadmin2/templates/admin2/monkey/index.html
2013-05-18 12:57:01 +02:00

25 lines
No EOL
459 B
HTML

{% extends "admin2/monkey/base.html" %}
{% block content %}
{% for app in object_list %}
<table class="table table-bordered table-striped">
<thead>
<tr>
<th colspan=3>{{ app.app_name.title }}</th>
</tr>
</thead>
<tbody>
{% for model in app.obj.models %}
<tr>
<td>{{ model.name }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endfor %}
{% endblock content %}