{% extends "admin/change_form.html" %} {% load i18n %} {% block extrahead %} {{ block.super }} {% endblock %} {% block content_title %}

{% trans "Event Group Overview" %}

{% endblock %} {% block field_sets %}
    {% for event in event_list %}
  1. {% if forloop.first %} {{ event.timestamp|date:"DATETIME_FORMAT" }} {% else %} {{ event.timestamp_delay }} {% endif %} {{ event.html_label }} {{ event.message }} {% if event.initiator %} {% blocktrans with initiator=event.initiator %} Initiator: {{ initiator }}{% endblocktrans %} {% endif %}
  2. {% endfor %}

{% trans "This Event" %}

{{ block.super }} {% endblock %}