{% extends "beam/base.html" %} {% load beam_tags %} {% load i18n %} {% block body_classes %}{{ block.super }} beam-delete{% if component.model %}{% get_options component.model as options %} beam-delete-{{ options.app_label }}-{{ options.model_name }}{% endif %}{% endblock %} {% block content %} {% block heading %} {% if heading %}{{ heading }}{% else %} {% get_options component.model as options %} {% blocktrans %}Delete {{ object }}{% endblocktrans %} {{ options.verbose_name|capfirst }} {% endif %} {% endblock %} {% trans "Are you sure you want to delete this object:" %} {{ object }}? {% csrf_token %} {{ form.as_p }} {% trans "Yes, I'm sure" %} {% trans "No, go back." %} {% endblock %}
{% trans "Are you sure you want to delete this object:" %} {{ object }}?