django-admin2/djadmin2/templates/admin2/bootstrap/model_confirm_delete.html

19 lines
412 B
HTML
Raw Normal View History

2013-05-18 14:53:17 +00:00
{% extends "admin2/bootstrap/base.html" %}
2013-05-18 11:37:46 +00:00
{% block title %}Are you sure?{% endblock %}
{% block page_title %}Are you sure?{% endblock %}
2013-05-18 11:37:46 +00:00
{% block content %}
<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 %}