{% extends "admin/delete_selected_confirmation.html" %} {% load i18n l10n admin_urls static %} {% block content %} {% if perms_lacking %} {% if perms_lacking|first == 'active_devices' %}

{% blocktranslate %}You have selected the following active device{{ model_count | pluralize }} to delete:{% endblocktranslate %}

{% blocktrans %}It is required to flag the device as deactivated before deleting the device. If the device has configuration, then wait till the configuration status changes to "deactivated" before deleting the device.{% endblocktrans %}

{% else %}

{% 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 %}

{% endif %} {% elif protected %}

{% blocktranslate %}Deleting the selected {{ objects_name }} would require deleting the following protected related objects:{% endblocktranslate %}

{% else %}

{% 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 %}

{% include "admin/includes/object_delete_summary.html" %}

{% translate "Objects" %}

{% for deletable_object in deletable_objects %} {% endfor %}
{% csrf_token %}
{% for obj in queryset %} {% endfor %} {% translate "No, take me back" %}
{% endif %} {% endblock %}