{% extends "admin/base_site_nav.html" %}
{% load i18n %}
{% block title %}frePPLe{% endblock %}
{% block content_title %}
{% get_models from auth freppledb.admin.site as modelsAuth %}
{% get_models from input freppledb.admin.site as modelsIn %}
{% get_models from common freppledb.admin.site as modelsCommon %}
{% if modelsIn %}
{% endif %}
{% if perms.execute %}
{% endif %}
{% if modelsAuth or modelsCommon %}
{% endif %}
{% trans 'My Actions' %}
{% load log %}
{% get_multidbadmin_log 10 as admin_log for_user user %}
{% if not admin_log %}
{% trans 'None available' %}
{% else %}{% for entry in admin_log %}
{% if entry.is_deletion %}{{entry.object_repr}}
{% else %}
{{entry.object_repr}}
{% endif %}
{% if entry.content_type %}{% filter capfirst %}{% trans entry.content_type.name %}{% endfilter %}{% else %}{% trans 'Unknown content' %}{% endif %}{% endfor %}
{% endif %}
{% endblock %}