2013-05-18 14:53:17 +00:00
{% extends "admin2/bootstrap/base.html" %}
2013-05-25 17:44:48 +00:00
{% load i18n %}
2013-05-18 11:37:46 +00:00
2013-05-25 17:44:48 +00:00
{% block title %}{% trans "Are you sure?" %}{% endblock %}
2013-05-20 18:38:36 +00:00
2013-05-25 17:44:48 +00:00
{% block page_title %}{% trans "Are you sure?" %}{% endblock %}
2013-05-20 18:38:36 +00:00
2013-05-18 11:37:46 +00:00
{% block content %}
2013-05-25 17:44:48 +00:00
< 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 >
2013-05-20 21:33:37 +00:00
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 %}