mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-04-29 19:14:47 +00:00
25 lines
459 B
HTML
25 lines
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 %}
|