{% extends "admin/base_site.html" %} {% load i18n l10n admin_urls static jazzmin %} {% get_jazzmin_ui_tweaks as jazzmin_ui %} {% block extrahead %} {{ block.super }} {{ media }} {% endblock %} {% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} delete-selected-confirmation{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content_title %} {% trans 'Delete multiple objects' %} {% endblock %} {% block content %}

{% trans 'Delete multiple objects' %}

{% if perms_lacking %}

{% blocktrans %}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:{% endblocktrans %}

    {% for obj in perms_lacking %}
  1. {{ obj }}
  2. {% endfor %}
{% elif protected %}

{% blocktrans %}Deleting the selected {{ objects_name }} would require deleting the following protected related objects:{% endblocktrans %}

    {% for obj in protected %}
  1. {{ obj }}
  2. {% endfor %}
{% else %}

{% blocktrans with escaped_object=object %}Are you sure you want to delete the {{ object_name }} "{{ escaped_object }}"? It eventually will delete related objects as well, as shown in the summary:{% endblocktrans %}

{% include "admin/cms/object_delete_summary.html" %}
{% csrf_token %} {% for obj in queryset %} {% endfor %}
{% endif %}
{% endblock %}