{% extends "admin2/bootstrap/base.html" %} {% load admin2_tags i18n %} {% block title %}{% trans "Are you sure?" %}{% endblock title %} {% block page_title %}{% trans "Are you sure?" %}{% endblock page_title %} {% block breadcrumbs %}
  • Home /
  • {{ app_label|title }} /
  • {{ model_name_pluralized|title }} /
  • {{ object }} /
  • {% trans "Delete" %}
  • {% endblock breadcrumbs %} {% block content %}

    {% blocktrans with model_name=model_name object=object %}Are you sure you want to delete the {{ model_name }} "{{ object }}"? All of the following items will be deleted:{% endblocktrans %}

    {% csrf_token %} {{ form.as_p }}
    {% endblock content %}