@ -1,7 +1,7 @@
{% extends "admin/base_site.html" %}
{% extends "admin/base_site.html" %}
{% load i18n static %}
{% load i18n static %}
{% block extrastyle %}{{ block.super }}< link rel = "stylesheet" type = "text/css" href = "{% static " admin / css / dashboard . css " % } " / > {% endblock %}
{% block extrastyle %}{{ block.super }}< link rel = "stylesheet" type = "text/css" href = "{% static " admin / css / dashboard . css " % } " > {% endblock %}
{% block coltype %}colMS{% endblock %}
{% block coltype %}colMS{% endblock %}
@ -9,44 +9,10 @@
{% block breadcrumbs %}{% endblock %}
{% block breadcrumbs %}{% endblock %}
{% block nav-sidebar %}{% endblock %}
{% block content %}
{% block content %}
< div id = "content-main" >
< 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.add_url %}
< td > < a href = "{{ model.add_url }}" class = "addlink" > {% trans 'Add' %}< / a > < / td >
{% else %}
< td > < / td >
{% endif %}
{% if model.admin_url %}
< td > < a href = "{{ model.admin_url }}" class = "changelink" > {% trans 'Change' %}< / a > < / td >
{% else %}
< td > < / td >
{% endif %}
< / tr >
{% endfor %}
< / table >
< / div >
{% endfor %}
{% else %}
< p > {% trans "You don't have permission to edit anything." %}< / p >
{% endif %}
< div class = "module" >
< div class = "module" >
< table >
< table >
< caption >
< caption >
@ -62,18 +28,19 @@
< / tr >
< / tr >
< / table >
< / table >
< / div >
< / div >
{% include "admin/app_list.html" with app_list=app_list show_changelinks=True %}
< / div >
< / div >
{% endblock %}
{% endblock %}
{% block sidebar %}
{% block sidebar %}
< div id = "content-related" >
< div id = "content-related" >
< div class = "module" id = "recent-actions-module" >
< div class = "module" id = "recent-actions-module" >
< h2 > {% trans 'Recent A ctions' %}< / h2 >
< h2 > {% translate 'Recent a ctions' %}< / h2 >
< h3 > {% trans 'My A ctions' %}< / h3 >
< h3 > {% translate 'My a ctions' %}< / h3 >
{% load log %}
{% load log %}
{% get_admin_log 10 as admin_log for_user user %}
{% get_admin_log 10 as admin_log for_user user %}
{% if not admin_log %}
{% if not admin_log %}
< p > {% trans 'None available' %}< / p >
< p > {% translate 'None available' %}< / p >
{% else %}
{% else %}
< ul class = "actionlist" >
< ul class = "actionlist" >
{% for entry in admin_log %}
{% for entry in admin_log %}
@ -83,11 +50,11 @@
{% else %}
{% else %}
< a href = "{{ entry.get_admin_url }}" > {{ entry.object_repr }}< / a >
< a href = "{{ entry.get_admin_url }}" > {{ entry.object_repr }}< / a >
{% endif %}
{% endif %}
< br / >
< br >
{% if entry.content_type %}
{% if entry.content_type %}
< span class = "mini quiet" > {% filter capfirst %}{{ entry.content_type }}{% endfilter %}< / span >
< span class = "mini quiet" > {% filter capfirst %}{{ entry.content_type.name }}{% endfilter %}< / span >
{% else %}
{% else %}
< span class = "mini quiet" > {% trans 'Unknown content' %}< / span >
< span class = "mini quiet" > {% translate 'Unknown content' %}< / span >
{% endif %}
{% endif %}
< / li >
< / li >
{% endfor %}
{% endfor %}