{% extends "admin/delete_selected_confirmation.html" %} {% load i18n %} {# not needed with core theme but required with surface-theme as it does not use base_site.html #} {% block title %}{{ title }}{% endblock %} {% block content %}

{% block action_question %}Are you sure you want to {{ action_short_description }} for the selected {{ objects_name }}?{% endblock action_question %}

Summary

{% block action_summary %} {% for obj in queryset %}
    {{ obj }}
{% endfor %} {% endblock action_summary %} {% block action_form %}
{% csrf_token %}
{% for obj in queryset %} {% endfor %} {% trans "No, take me back" %}
{% endblock action_form %}
{% endblock %}