mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-04-12 02:41:05 +00:00
19 lines
522 B
HTML
19 lines
522 B
HTML
{% extends "admin2/bootstrap/base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Are you sure?" %}{% endblock %}
|
|
|
|
{% block page_title %}{% trans "Are you sure?" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>{% blocktrans with model=model object=object %}Are you sure you want to delete the {{ model }} "{{ object }}"? All of the following related items will be deleted:{% endblocktrans %}</p>
|
|
|
|
TODO
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit"/>
|
|
</form>
|
|
|
|
{% endblock content %}
|