{% extends "index.html" %} {% load i18n %} {% load actionlog %} {% block menu %} {% with current_category="actions" %} {{ block.super }} {% endwith %} {% endblock %} {% block content %}

{% trans "The following actions have been issued by users. Hover over a line to see additional comments." %}

{% for action in actions %} {% endfor %}
{% trans "Timestamp" %} {% trans "User" %} {% trans "Action" %} {% trans "Object" %}
{{ action.timestamp }} {{ action.user }} {% trans action.action|actionlogize %} {% trans "Reference" %}
{% trans "Delete All" %} {% if actions.has_previous %} {% trans "Previous" %} {% endif %} {% blocktrans with current=actions.number max=actions.paginator.num_pages %} Page {{ current }} of {{ max }}. {% endblocktrans %} {% if actions.has_next %} {% trans "Next" %} {% endif %}
{% endblock %}