blob: f0cf7addf31d1a66d2fb5f88b00cbe4fb836ec24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{% 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 %}
|