diff options
Diffstat (limited to 'app/lib/grappelli/templates/admin/delete_confirmation.html')
-rw-r--r-- | app/lib/grappelli/templates/admin/delete_confirmation.html | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/app/lib/grappelli/templates/admin/delete_confirmation.html b/app/lib/grappelli/templates/admin/delete_confirmation.html deleted file mode 100644 index f0cf7ad..0000000 --- a/app/lib/grappelli/templates/admin/delete_confirmation.html +++ /dev/null @@ -1,48 +0,0 @@ -{% extends "admin/base_site.html" %} - -<!-- LOADING --> -{% load i18n %} - -<!-- BREADCRUMBS --> -{% block breadcrumbs %} - <div id="breadcrumbs"> - <a href="../../../../">{% trans "Home" %}</a> › - <a href="../../../">{{ app_label|capfirst }}</a> › - <a href="../../">{{ opts.verbose_name_plural|capfirst }}</a> › - <a href="../">{{ object|truncatewords:"18" }}</a> › - {% trans 'Delete' %} - </div> -{% endblock %} - -<!-- CONTENT --> -{% block content %} - <div class="container-grid delete-confirmation"> - {% if perms_lacking %} - <div class="module"> - <h2>{% blocktrans with object as escaped_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 %}</h2> - <div class="row"> - <ul class="rte"> - {% for obj in perms_lacking %} - <li>{{ obj }}</li> - {% endfor %} - </ul> - </div> - </div> - {% else %} - <div class="module"> - <h2>{% blocktrans with object as escaped_object %}Are you sure you want to delete the {{ object_name }} "{{ escaped_object }}"? All of the following related items will be deleted:{% endblocktrans %}</h2> - <div class="row"> - <ul class="rte">{{ deleted_objects|unordered_list }}</ul> - </div> - </div> - <form action="" method="post">{% csrf_token %} - <div class="module footer"> - <ul class="submit-row" {% if is_popup %}style="overflow: auto;"{% endif %}> - <li class="left cancel-button-container"><a href="../" class="cancel-link">{% trans "Cancel" %}</a></li> - <li class="submit-button-container"><input type="submit" value="{% trans "Yes, I'm sure" %}" class="default" /></li> - </ul><input type="hidden" name="post" value="yes" /> - </div> - </form> - {% endif %} - </div> -{% endblock %} |