{% extends "wagtailadmin/base.html" %} {% load wagtailadmin_tags i18n staticfiles gravatar %} {% block content %} {% trans "Page Records" as title_trans %} {% include "wagtailadmin/shared/header.html" with title=title_trans %}

{{ object.page.title }}

Showing changes made between {{ object.previous_record.created_at }} and {{ object.created_at }}{% if object.user %} by {{ object.user }}{% endif %}

{% for comp in object.diff_json %} {% empty %} {% endfor %}
{% trans "Fields" %} {% trans "Changes" %}

{{ comp.label }}:

{% if comp.diff %} {{ comp.diff|safe }} {% elif comp.child %} {% for child_comp in comp.child %}
{% if move %}

{% if move > 0 %} {% blocktrans count counter=move %} Moved down 1 place. {% plural %} Moved down {{ counter }} places. {% endblocktrans %} {% elif move < 0 %} {% blocktrans count counter=move|abs %} Moved up 1 place. {% plural %} Moved up {{ counter }} places. {% endblocktrans %} {% endif %}

{% endif %}
{% for field_comp in child_comp.get_field_comparisons %}
{{ field_comp.field_label }}
{{ field_comp.htmldiff }}
{% endfor %}
{% endfor %} {% endif %}

{% trans "There are no differences between these two revisions" %}

{% endblock %} {% block extra_css %} {{ block.super }} {% endblock %}