{% extends "admin/base_site.html" %} {% load i18n admin_urls %} {% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} revert-confirmation{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% blocktrans with escaped_object=version.object_repr %} Are you sure you want to restore the {{ object_name }} "{{ escaped_object }}" to its version from {{ revision_date }}? {% endblocktrans %}

{% if placeholders_to_restore %}

{% trans 'The following placeholders were deleted and will be restored:' %}

{% endif %} {% if conflict_links %}

{% trans 'Warning there are conflicts' %}

{% trans 'Please restore required related objects first:' %}

{% endif %} {% if restore_form %} {% if non_resolvable_conflicts %}

{% trans 'The following conflicts would be recovered automatically' %}

{% endif %}
{% csrf_token %} {{ restore_form.as_p }}
{% trans "No, take me back" %}
{% endif %} {% endblock %}