{% extends "admin/base_site.html" %} {% load i18n admin_modify adminmedia %} {% block title %}{% trans "Purge documents" %} {{ block.super }}{% endblock %} {% block extrahead %} {{ block.super }} {{ media }} {% endblock %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block coltype %}{% if ordered_objects %}colMS{% else %}colM{% endif %}{% endblock %} {% block bodyclass %}change-form{% endblock %} {% block breadcrumbs %}{% if not is_popup %} {% endif %}{% endblock %} {% block content %}

{% trans "Purge documents" %}

{% csrf_token %}

{% blocktrans %} The following documents will be permanently removed from the database. This action cannot be undone. To cancel, press the "Back" button in your browser. {% endblocktrans %}

    {% for doc in to_purge %}
  • {{ doc }}
  • {% endfor %}
{% endblock %}