{% extends "admin/index.html" %}
{% load i18n static %}
{# This block adds a search form on the admin start page and on the module start page so that #}
{# the user can quickly search for documents #}
{% block pretitle %}
{% trans 'Search documents' %}
{% endblock %}
{# This whole block is here just to override the `get_admin_log` line so #}
{# that the log entries aren't limited to the current user #}
{% block sidebar %}
{% trans 'Recent actions' %}
{% trans 'My actions' %}
{% load log %}
{% get_admin_log 10 as admin_log %}
{% if not admin_log %}
{% trans 'None available' %}
{% else %}
{% for entry in admin_log %}
{% 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 }}{% endfilter %}
{% else %}
{% trans 'Unknown content' %}
{% endif %}