mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-24 20:33:11 +00:00
53 lines
2.5 KiB
HTML
53 lines
2.5 KiB
HTML
{# Please keep this template in sync with django/contrib/admin one #}
|
|
{% extends "admin/base_site.html" %}
|
|
{% load i18n admin_urls static %}
|
|
|
|
{% block extrahead %}
|
|
{{ block.super }}
|
|
{{ media }}
|
|
<script type="text/javascript" src="{% static 'admin/js/cancel.js' %}"></script>
|
|
{% endblock %}
|
|
|
|
{% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} delete-confirmation{% endblock %}
|
|
|
|
{% block breadcrumbs %}
|
|
<ol class="breadcrumb"><li class="home">
|
|
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
|
|
</li><li><a href="{% url 'admin:app_list' app_label=opts.app_label %}">{{ opts.app_config.verbose_name }}</a>
|
|
</li><li><a href="{% url opts|admin_urlname:'changelist' %}">{{ opts.verbose_name_plural|capfirst|escape }}</a>
|
|
</li><li><a href="{% url opts|admin_urlname:'change' object.pk|admin_urlquote %}">{{ object|truncatewords:"18" }}</a>
|
|
</li><li class="active">{% trans 'Delete' %}
|
|
</li></ol>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if perms_lacking %}
|
|
<p>{% 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 %}</p>
|
|
<ul>
|
|
{% for obj in perms_lacking %}
|
|
<li>{{ obj }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% elif protected %}
|
|
<p>{% blocktrans with escaped_object=object %}Deleting the {{ object_name }} '{{ escaped_object }}' would require deleting the following protected related objects:{% endblocktrans %}</p>
|
|
<ul>
|
|
{% for obj in protected %}
|
|
<li>{{ obj }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
<p>{% blocktrans with escaped_object=object %}Are you sure you want to delete the {{ object_name }} "{{ escaped_object }}"? All of the following related items will be deleted:{% endblocktrans %}</p>
|
|
{% include "admin/includes/object_delete_summary.html" %}
|
|
<h2>{% trans "Objects" %}</h2>
|
|
<ul>{{ deleted_objects|unordered_list }}</ul>
|
|
<form method="post">{% csrf_token %}
|
|
<div>
|
|
<input type="hidden" name="post" value="yes" />
|
|
{% if is_popup %}<input type="hidden" name="{{ is_popup_var }}" value="1" />{% endif %}
|
|
{% if to_field %}<input type="hidden" name="{{ to_field_var }}" value="{{ to_field }}" />{% endif %}
|
|
<input type="submit" class="btn btn-danger" value="{% trans "Yes, I'm sure" %}" />
|
|
<a href="#" class="button cancel-link">{% trans "No, take me back" %}</a>
|
|
</div>
|
|
</form>
|
|
{% endif %}
|
|
{% endblock %}
|