{% extends "core/base.jinja" %} {% block title %} {% trans %}Delete confirmation{% endtrans %} {% endblock %} {% block info_boxes %} {% endblock %} {% block nav %} {% endblock %} {# if the template context has the `object_name` variable, then this one will be used, instead of the result of `str(object)` #} {% if object and not object_name %} {% set object_name=object %} {% endif %} {% block content %}

{% trans %}Delete confirmation{% endtrans %}

{% csrf_token %}

{% trans name=object_name %}Are you sure you want to delete "{{ name }}"?{% endtrans %}

{% if help_text %}

{{ help_text }}

{% endif %}
{% endblock %}