mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-24 18:10:25 +00:00
18 lines
412 B
HTML
18 lines
412 B
HTML
{% extends "admin2/bootstrap/base.html" %}
|
|
|
|
{% block title %}Are you sure?{% endblock %}
|
|
|
|
{% block page_title %}Are you sure?{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>Are you sure you want to delete the {{ model }} "{{ object }}"? All of the following related items will be deleted:</p>
|
|
|
|
TODO
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit"/>
|
|
</form>
|
|
|
|
{% endblock content %}
|