{% extends "admin/base_site.html" %} {% load i18n %} {% load admin_urls %} {% load papertrail %} {% load static from staticfiles %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% if available_type_filters %}
{% csrf_token %} {% for id in selected_actions %} {% endfor %}
{% for title in available_type_filters.keys %} {% endfor %}
{% endif %}
{% if action_list %} {% for action in action_list %} {% endfor %}
{% trans 'Timestamp' %} {% trans 'Event Type' %} {% trans 'Message' %} {% trans 'Targets' %} {% trans 'Event Data' %}
{{ action.timestamp|date:"DATETIME_FORMAT" }} {{ action.type }} {% if available_type_filters %}
    {% for title, types in available_type_filters.iteritems %} {% if action.type in types %}
  • {{ title }}
  • {% endif %} {% endfor %}
{% endif %}
{{ action.message }} {% if action.data %} {{ action.data }} {% else %} - {% endif %}
{% else %}

{% trans "This object doesn't have any events in its paper trail yet." %}

{% endif %}
{% endblock %}