2013-05-18 14:53:17 +00:00
|
|
|
{% extends "admin2/bootstrap/base.html" %}
|
2013-05-18 11:37:46 +00:00
|
|
|
|
2013-05-20 21:33:37 +00:00
|
|
|
{% block title %}Are you sure?{% endblock %}
|
2013-05-20 18:38:36 +00:00
|
|
|
|
2013-05-20 21:33:37 +00:00
|
|
|
{% block page_title %}Are you sure?{% endblock %}
|
2013-05-20 18:38:36 +00:00
|
|
|
|
2013-05-18 11:37:46 +00:00
|
|
|
{% block content %}
|
2013-05-20 21:33:37 +00:00
|
|
|
<p>Are you sure you want to delete the {{ model }} "{{ object }}"? All of the following related items will be deleted:</p>
|
|
|
|
|
|
|
|
|
|
TODO
|
2013-05-18 11:37:46 +00:00
|
|
|
|
2013-05-18 12:36:14 +00:00
|
|
|
<form method="post">
|
|
|
|
|
{% csrf_token %}
|
|
|
|
|
{{ form.as_p }}
|
|
|
|
|
<input type="submit"/>
|
|
|
|
|
</form>
|
2013-05-18 11:37:46 +00:00
|
|
|
|
|
|
|
|
{% endblock content %}
|