1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{% extends "base.html" %}
{% block body %}
{{ admin_title | default(value='Rustango Admin') }}
{% if models | length == 0 %}
No models registered.
{% else %}
{% for group in groups %}
{{ group.app }}
ModelTableFields
{% for m in group.models %}
{{ m.name }}
{{ m.table }}
{{ m.field_count }}
{% endfor %}
{% endfor %}
{% endif %}
{% if recent_actions and recent_actions | length > 0 %}
Recent actions
{% for a in recent_actions %}
{{ a.operation }}
{{ a.table }}/{{ a.pk }}
{{ a.occurred_at }}{% if a.source %} · {{ a.source }}{% endif %}
{% endfor %}
{% endif %}
{% endblock body %}