{% extends "admin/base.html" %} {% load i18n static log %} {% block content_title %} {{ title }} {% endblock %} {% block content %}
{% if app_list %} {% for app in app_list %}

{{ app.name }}

{% endfor %} {% else %}

{% trans "You don't have permission to view or edit anything." %}

{% endif %}
{% if app_list %}

{% trans 'Recent actions' %}

{% get_admin_log 10 as admin_log for_user user %} {% if admin_log %}
    {% for entry in admin_log %}
  • {% if entry.is_addition %} {% elif entry.is_change %} {% elif entry.is_deletion %} {% endif %} {% if entry.is_deletion or not entry.get_admin_url %} {{ entry.object_repr }} {% else %} {{ entry.object_repr }} {% endif %} {% if entry.content_type %} ({{ entry.content_type }}) {% endif %}
  • {% endfor %}
{% else %}

{% trans 'None available' %}

{% endif %}
{% endif %} {% endblock %}