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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{% extends "admin/base_site.html" %}
{% load i18n static %}
{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% static "admin/css/dashboard.css" %}">{% endblock %}
{% block coltype %}colMS{% endblock %}
{% block bodyclass %}{{ block.super }} dashboard{% endblock %}
{% block breadcrumbs %}{% endblock %}
{% block content %}
<div id="content-main">
{% if app_list %}
{% for app in app_list %}
<div class="app-{{ app.app_label }} module">
<table>
<caption>
<a href="{{ app.app_url }}" class="section" title="{% blocktrans with name=app.name %}Models in the {{ name }} application{% endblocktrans %}">{{ app.name }}</a>
</caption>
{% for model in app.models %}
<tr class="model-{{ model.object_name|lower }}">
{% if model.admin_url %}
<th scope="row"><a href="{{ model.admin_url }}">{{ model.name }}</a></th>
{% else %}
<th scope="row">{{ model.name }}</th>
{% endif %}
{% if model.admin_url %}
<td><a href="{{ model.admin_url }}" class="viewlink">进入</a></td>
{% else %}
<td> </td>
{% endif %}
</tr>
{% endfor %}
</table>
</div>
{% endfor %}
{% else %}
<p>{% trans "You don't have permission to view or edit anything." %}</p>
{% endif %}
</div>
{% endblock %}
{% block sidebar %}
{#<div id="content-related">#}
{# <div class="module" id="recent-actions-module">#}
{# <h2>{% trans 'Recent actions' %}</h2>#}
{# <h3>{% trans 'My actions' %}</h3>#}
{# {% load log %}#}
{# {% get_admin_log 10 as admin_log for_user user %}#}
{# {% if not admin_log %}#}
{# <p>{% trans 'None available' %}</p>#}
{# {% else %}#}
{# <ul class="actionlist">#}
{# {% for entry in admin_log %}#}
{# <li class="{% if entry.is_addition %}addlink{% endif %}{% if entry.is_change %}changelink{% endif %}{% if entry.is_deletion %}deletelink{% endif %}">#}
{# {% if entry.is_deletion or not entry.get_admin_url %}#}
{# {{ entry.object_repr }}#}
{# {% else %}#}
{# <a href="{{ entry.get_admin_url }}">{{ entry.object_repr }}</a>#}
{# {% endif %}#}
{# <br>#}
{# {% if entry.content_type %}#}
{# <span class="mini quiet">{% filter capfirst %}{{ entry.content_type }}{% endfilter %}</span>#}
{# {% else %}#}
{# <span class="mini quiet">{% trans 'Unknown content' %}</span>#}
{# {% endif %}#}
{# </li>#}
{# {% endfor %}#}
{# </ul>#}
{# {% endif %}#}
{# </div>#}
{#</div>#}
{% endblock %}