summaryrefslogtreecommitdiff
path: root/lib/grappelli/templates/admin/delete_selected_confirmation.html
diff options
context:
space:
mode:
Diffstat (limited to 'lib/grappelli/templates/admin/delete_selected_confirmation.html')
-rw-r--r--lib/grappelli/templates/admin/delete_selected_confirmation.html54
1 files changed, 54 insertions, 0 deletions
diff --git a/lib/grappelli/templates/admin/delete_selected_confirmation.html b/lib/grappelli/templates/admin/delete_selected_confirmation.html
new file mode 100644
index 0000000..4e34d9f
--- /dev/null
+++ b/lib/grappelli/templates/admin/delete_selected_confirmation.html
@@ -0,0 +1,54 @@
+{% extends "admin/base_site.html" %}
+
+<!-- LOADING -->
+{% load i18n %}
+
+<!-- BREADCRUMBS -->
+{% block breadcrumbs %}
+ <div id="breadcrumbs">
+ <a href="../../">{% trans "Home" %}</a> &rsaquo;
+ <a href="../">{{ app_label|capfirst }}</a> &rsaquo;
+ <a href="./">{{ opts.verbose_name_plural|capfirst }}</a> &rsaquo;
+ {% trans 'Delete multiple objects' %}
+ </div>
+{% endblock %}
+
+<!-- CONTENT -->
+{% block content %}
+ <div class="container-grid delete-confirmation">
+ {% if perms_lacking %}
+ <div class="module">
+ <h2>{% blocktrans %}Deleting the {{ object_name }} 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 %}Are you sure you want to delete the selected {{ object_name }} objects? All of the following objects and their related items will be deleted:{% endblocktrans %}</h2>
+ {% for deleteable_object in deletable_objects %}
+ <div class="row">
+ <ul class="rte">{{ deleteable_object|unordered_list }}</ul>
+ </div>
+ {% endfor %}
+ </div>
+ <form action="" method="post">{% csrf_token %}
+ <div class="module footer">
+ {% for obj in queryset %}
+ <input type="hidden" name="{{ action_checkbox_name }}" value="{{ obj.pk }}" />
+ {% endfor %}
+ <input type="hidden" name="action" value="delete_selected" />
+ <input type="hidden" name="post" value="yes" />
+ <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 %} \ No newline at end of file