{% extends "admin/base_site.html" %} {% load i18n %} {% block title %}{{ title }} | {{ site_title }}{% endblock %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% translate "Changes in" %} {{ table_name }}

{% if diff_rows %}

{{ diff_rows|length }} row{{ diff_rows|pluralize }} changed.

{% for col in columns %} {% endfor %} {% for row in diff_rows %} {% for cell in row.cells %} {% if row.diff_type == "added" %} {{ cell.to_val }} {% elif row.diff_type == "removed" %} {{ cell.from_val }} {% elif cell.changed %} {{ cell.from_val }} {{ cell.to_val }} {% else %} {{ cell.to_val }} {% endif %} {% endfor %} {% endfor %}
{% translate "Type" %}{{ col }}
{{ row.diff_type }}
{% else %}

{% translate "No row-level changes found." %}

{% endif %}

← {% translate "Back to Status" %}

{% endblock %}