{% extends 'admin/base_site.html' %} {% load i18n admin_urls static %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% blocktrans with escaped_object=object %}Are you sure you want to revert the {{ object_name }}?{% endblocktrans %}

{% if object.action == 'Deleted' %} {% trans 'Object was deleted in this change, if you revert this change, object will be created again' %} {% elif object.action == 'Added' %} {% trans 'Object was added in this change, if you revert this change, object will be deleted' %} {% endif %} {% for data in changed_data %}

{{ data.field }} = {{ data.values.old }}

{% endfor %}
{% csrf_token %}
{% trans "No, take me back" %}
{% endblock %}