diff options
Diffstat (limited to 'design/templates/admin/index.html')
-rw-r--r-- | design/templates/admin/index.html | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/design/templates/admin/index.html b/design/templates/admin/index.html new file mode 100644 index 0000000..cbb2904 --- /dev/null +++ b/design/templates/admin/index.html @@ -0,0 +1,79 @@ +{% extends "admin/base_site.html" %} + +<!-- LOADING --> +{% load i18n grp_tags log %} + +<!-- JAVASCRIPTS --> +{% block javascripts %} + {{ block.super }} +{% endblock %} + +<!-- COLTYPE/BODYCLASS-- > +{% block bodyclass %}dashboard{% endblock %} +{% block content-class %}content-grid{% endblock %} + + +<!-- BREADCRUMBS --> +{% block breadcrumbs %} + <ul class="grp-horizontal-list"> + <li>{% trans "Home" %}</li> + </ul> +{% endblock %} +{% block content_title %} + {% if title %} + <header><h1>{{ title }}</h1></header> + {% endif %} +{% endblock %} + +<!-- CONTENT --> +{% block content %} + <div class="g-d-c"> + <div class="g-d-12 g-d-f"> + {% for app in app_list %} + <div class="grp-module" id="app_{{ app.name|lower }}"> + <h2><a href="{{ app.app_url }}" class="grp-section">{% trans app.name %}</a></h2> + {% for model in app.models %} + <div class="grp-row"> + {% if model.perms.change %}<a href="{{ model.admin_url }}"><strong>{{ model.name }}</strong></a>{% else %}<span><strong>{{ model.name }}</strong></span>{% endif %} + {% if model.perms.add or model.perms.change %} + <ul class="grp-actions"> + {% if model.perms.add %}<li class="grp-add-link"><a href="{{ model.admin_url }}add/">{% trans 'Add' %}</a></li>{% endif %} + {% if model.perms.change %}<li class="grp-change-link"><a href="{{ model.admin_url }}">{% trans 'Change' %}</a></li>{% endif %} + </ul> + {% endif %} + </div> + {% endfor %} + </div> + {% empty %} + <p>{% trans "You donĀ“t have permission to edit anything." %}</p> + {% endfor %} + </div> +{% include 'admin/buttons.html' %} + <div class="g-d-6 g-d-l"> + <div class="grp-module" id="grp-recent-actions-module"> + <h2>{% trans 'Recent Actions' %}</h2> + <div class="grp-module"> + <h3>{% trans 'My Actions' %}</h3> + {% get_admin_log 10 as admin_log for_user user %} + {% if not admin_log %} + <p>{% trans 'None available' %}</p> + {% else %} + <ul class="grp-listing-small"> + {% for entry in admin_log %} + <li class="grp-row{% if entry.is_addition %} grp-add-link{% endif %}{% if entry.is_change %} grp-change-link{% endif %}{% if entry.is_deletion %} grp-delete-link{% endif %}"> + {% if entry.is_deletion %} + <span>{{ entry.object_repr }}</span> + {% else %} + <a href="{{ entry.get_admin_url }}">{{ entry.object_repr }}</a> + {% endif %} + <span class="grp-font-color-quiet">{% filter capfirst %}{% trans entry.content_type.name %}{% endfilter %}</span> + </li> + {% endfor %} + </ul> + {% endif %} + </div> + </div> + </div> + </div> +{% endblock %} + |