{% extends "admin/base_site.html" %} {% load i18n static %} {% block coltype %}colMS{% endblock %} {% block bodyclass %}{{ block.super }} dashboard{% endblock %} {% block nav-breadcrumbs %}{% endblock %} {% block content_container %}
{% include "admin/includes/dashboard_stats.html" %} {% include "admin/includes/dashboard_charts.html" %}

{% translate 'Recent actions' %}

{% translate 'My actions' %}

{% load log %} {% get_admin_log 10 as admin_log for_user user %} {% if not admin_log %}

{% translate 'None available' %}

{% else %}
{% 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 %} {% filter capfirst %}{{ entry.content_type.name }}{% endfilter %} {% else %} {% translate 'Unknown content' %} {% endif %} {% if entry.is_addition %}{% translate 'Added' %}{% elif entry.is_change %}{% translate 'Changed' %}{% else %}{% translate 'Deleted' %}{% endif %}
{% endfor %}
{% endif %}
{% endblock %}