{% load i18n %}
    {% for file in files %}
  1. {{file.depot_filename}}: {% if file.binary %} {% trans "binary file" %} {% else %} {% blocktrans count file.num_changes as counter %} 1 change {% plural %} {{ counter }} changes {% endblocktrans %} [ {% ifequal file.chunks.__len__ 1 %} {% ifequal file.chunks.0.change "insert" %}new content{% endifequal %}{% ifequal file.chunks.0.change "delete" %}deleted content{% endifequal %} {% else %} {% for chunk in file.changed_chunks %} {{forloop.counter}} {% endfor %} {% endifequal %} ]
  2. {% endif %} {% endfor %}
{% if is_paginated %} {% blocktrans %}This diff has been split across {{ pages }} pages:{% endblocktrans %} {% if has_previous %}<{% endif %} {% for num in page_numbers %} {% ifequal num page %} {{ num }} {% else %} {{ num }} {% endifequal %} {% endfor %} {% if has_next %}>{% endif %} {% endif %}