{% extends "admin/base_site.html" %} {% load i18n admin_urls %} {% block extrastyle %}{{ block.super }} {% endblock %} {% block usertools %}
{% trans 'Welcome,' %} {% firstof user.get_short_name user.get_username %} {% if user.groupsofprobes.count %} ({% for group in user.groupsofprobes.all %}{{ group.name }}{% if not forloop.last %},{% endif %}{% if forloop.last %}){% endif %} {% endfor %} {% endif %} . {% block userlinks %} {% trans 'Log out' %} {% endblock %}
{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% block object-tools %} {% endblock %}

{% blocktrans with date1=version1.revision.date_created|date:_("DATETIME_FORMAT") date2=version2.revision.date_created|date:_("DATETIME_FORMAT") %} Compare {{ date1 }} with {{ date2 }}: {% endblocktrans %}

{% trans "Go back to history list" %} {% for field_diff in compare_data %}

{% firstof field_diff.field.verbose_name field_diff.field.related_name %}{% if field_diff.is_related and not field_diff.follow %}{% endif %}

{% if field_diff.field.help_text %}

{{ field_diff.field.help_text }}

{% endif %}

{{ field_diff.diff }}

{% empty %}

There are no differences.

{% endfor %}

{% trans "Edit comment:" %}

{{ version2.revision.comment|default:"(there exist not comment)" }}
{% if has_unfollowed_fields %}

{% trans "Note:" %}

Fields/entries marked with are not under reversion control. It may be that not all marked information are correct.

{% endif %} ‹ {% trans "Go back to history list" %}
{% endblock %}