{% load i18n %} {% if is_bulk %}
{% trans "Bulk operation" %}: {{ bulk_count }} {% trans "items affected" %}
{% endif %} {% if rows %}
{% for row in rows %} {% if row.type == "changed" %} {% elif row.type == "bulk" %} {% elif row.type == "raw" %} {% else %} {% endif %} {% endfor %}
{% trans "Field" %} {% trans "Value" %}
{{ row.field_name }} {{ row.old_val }} {{ row.new_val }}
{{ row.field_name }} {% for group in row.groups %} {{ group.old_val }} ({{ group.count }}x) {% if not forloop.last %}
{% endif %} {% endfor %}
{{ row.new_val }}
{{ row.field_name }}
{{ row.raw }}
{{ row.field_name }} {% if row.is_long %}
{{ row.value }}
{% else %} {{ row.value }} {% endif %}
{% else %}

{% trans "No changes recorded." %}

{% endif %}