{% extends "admin/base_site.html" %} {% load i18n admin_urls %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% for record in history %} {% endfor %}
{% trans 'Date/Time' %} {% trans 'User' %} {% trans 'Action' %} {% trans 'Changes' %}
{{ record.history_date }} {{ record.history_user|default:"-" }} {% if record.history_type == '+' %}Created {% elif record.history_type == '~' %}Changed {% elif record.history_type == '-' %}Deleted {% endif %} {# We could list changed fields here if we computed diffs #} {# For now just show all fields or something simple #} {% trans 'View Details' %}
{% endblock %}