{% extends "admin/object_history.html" %} {% load i18n %} {% block content %} {% for item in object_history %} {% if item.pgh_context or item.pgh_data or item.pgh_diff %} {% endif %} {% endfor %}
{% trans 'Time' %} {% trans 'Event' %}
{{ item.pgh_created_at|date:"DATETIME_FORMAT" }} {{ item.pgh_label }} {% if item.pgh_data %} {% endif %} {% if item.pgh_diff %} {% endif %} {% if item.pgh_context %} {% endif %}
{% if item.pgh_context %}
Context
{% for key, value in item.pgh_context.metadata.items %} {% endfor %}
{% trans 'Key' %} {% trans 'Value' %}
{{ key }} {{ value }}
{% endif %} {% if item.pgh_data %}
Data
{% for key, value in item.pgh_data.items %} {% endfor %}
{% trans 'Key' %} {% trans 'Value' %}
{{ key }} {{ value }}
{% endif %} {% if item.pgh_diff %}
Changes
{% for key, value in item.pgh_diff.items %} {% endfor %}
{% trans 'Field' %} {% trans 'Before' %} {% trans 'After' %}
{{ key }} {{ value.0 }} {{ value.1 }}
{% endif %}
{% endblock %}