djLint/tests/django_admin/admin/delete_selected_confirmation.html
2021-07-29 13:41:34 -05:00

80 lines
2.9 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "admin/base_site.html" %}
{% load i18n l10n admin_urls static %}
{% block extrahead %}
{{ block.super }}
{{ media }}
<script src="{% static 'admin/js/cancel.js' %}" async></script>
{% endblock %}
{% block bodyclass %}
{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} delete-confirmation delete-selected-confirmation
{% endblock %}
{% block breadcrumbs %}
<div class="breadcrumbs">
<a href="{% url 'admin:index' %}">{% translate 'Home' %}</a>
&rsaquo;
<a href="{% url 'admin:app_list' app_label=opts.app_label %}">
{{ opts.app_config.verbose_name }}
</a>
&rsaquo;
<a href="{% url opts|admin_urlname:'changelist' %}">
{{ opts.verbose_name_plural|capfirst }}
</a>
&rsaquo; {% translate 'Delete multiple objects' %}
</div>
{% endblock %}
{% block content %}
{% if perms_lacking %}
<p>
{% blocktranslate %}
Deleting the selected {{ objects_name }} would result in deleting related objects, but your account doesn't have permission to delete the following types of objects:
{% endblocktranslate %}
</p>
<ul>
{% for obj in perms_lacking %}
<li>
{{ obj }}
</li>
{% endfor %}
</ul>
{% elif protected %}
<p>
{% blocktranslate %}
Deleting the selected {{ objects_name }} would require deleting the following protected related objects:
{% endblocktranslate %}
</p>
<ul>
{% for obj in protected %}
<li>
{{ obj }}
</li>
{% endfor %}
</ul>
{% else %}
<p>
{% blocktranslate %}
Are you sure you want to delete the selected {{ objects_name }}? All of the following objects and their related items will be deleted:
{% endblocktranslate %}
</p>
{% include "admin/includes/object_delete_summary.html" %}
<h2>{% translate "Objects" %}</h2>
{% for deletable_object in deletable_objects %}
<ul>
{{ deletable_object|unordered_list }}
</ul>
{% endfor %}
<form method="post">
{% csrf_token %}
<div>
{% for obj in queryset %}
<input type="hidden" name="{{ action_checkbox_name }}" value="{{ obj.pk|unlocalize }}">
{% endfor %}
<input type="hidden" name="action" value="delete_selected">
<input type="hidden" name="post" value="yes">
<input type="submit" value="{% translate 'Yes, Im sure' %}">
<a href="#" class="button cancel-link">
{% translate "No, take me back" %}
</a>
</div>
</form>
{% endif %}
{% endblock %}