mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-26 02:50:26 +00:00
25 lines
No EOL
459 B
HTML
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 %} |