{% extends "admin/base_site.html" %} {% load i18n admin_urls %} {# load url from suit_compat #} {% block breadcrumbs %} {% endblock %} {% block content %} {% if perms_lacking or protected %} {% if perms_lacking %}
{% blocktrans with escaped_object=object %}Deleting the {{ object_name }} '{{ escaped_object }}' would result in deleting related objects, but your account doesn't have permission to delete the following types of objects:{% endblocktrans %}
{% endif %} {% if protected %}
{% blocktrans with escaped_object=object %}Deleting the {{ object_name }} '{{ escaped_object }}' would require deleting the following protected related objects:{% endblocktrans %}
{% endif %} {% else %} {% block delete_form %}
{% csrf_token %}

{% trans 'Archive' %} {% trans opts.verbose_name %}?

{% blocktrans with escaped_object=object %}Are you sure you want to archive the {{ object_name }} "{{ escaped_object }}"? All of the files attached to the tasks for this project will be removed from the system and the project will be archived.{% endblocktrans %}

{% if is_popup %}{% endif %} {% if to_field %}{% endif %}
{% endblock %} {% endif %} {% endblock %}