{% extends 'admin/base_site.html' %} {% load static i18n %} {% load admin_urls %} {% load utils_tags %} {% block extrastyle %} {{ block.super }} {% if cl.formset %} {% endif %} {% if cl.formset or action_form %} {% endif %} {{ media.css }} {% if not actions_on_top and not actions_on_bottom %} {% endif %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% for entry in history %} {% endfor %}
{% trans 'Date' %}
{% trans 'Event type' %}
{% trans 'Changed fields' %}
{{ forloop.counter }} {{ entry.datetime }} {{ entry.get_event_type_display }}
    {% with entry.changed_fields|jsonify as changed_fields %} {% for field, value in changed_fields.items %}
  • {{ field }}
    {% if not value.0 or value.0 == 'None' %}(empty){% else %}{{ value.0 }}{% endif %} -> {{ value.1 }}
  • {% endfor %} {% endwith %}
{% endblock %}