{% translate "Changes in" %} {{ table_name }}
{% if diff_rows %}
{{ diff_rows|length }} row{{ diff_rows|pluralize }} changed.
| {% translate "Type" %} | {% for col in columns %}{{ col }} | {% endfor %}
|---|---|
| {{ row.diff_type }} | {% 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 %}
{% translate "No row-level changes found." %}
{% endif %}