diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-05-18 20:33:35 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-05-18 20:33:35 +0200 |
| commit | 34f93c2502c4048badae52bc9527cc213bba94a0 (patch) | |
| tree | fd9aff4560f47467006257c9a601500cb6538034 /ishtar_common | |
| parent | f79a81fe2b8cb5c63c138fffa255a7458e54f42f (diff) | |
| download | Ishtar-34f93c2502c4048badae52bc9527cc213bba94a0.tar.bz2 Ishtar-34f93c2502c4048badae52bc9527cc213bba94a0.zip | |
Delete basket
Diffstat (limited to 'ishtar_common')
| -rw-r--r-- | ishtar_common/templates/ishtar/form_delete.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ishtar_common/templates/ishtar/form_delete.html b/ishtar_common/templates/ishtar/form_delete.html new file mode 100644 index 000000000..6243e9423 --- /dev/null +++ b/ishtar_common/templates/ishtar/form_delete.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} +{% load i18n inline_formset %} +{% block content %} +<h2>{{page_name}}</h2> +<div class='form'> +<form enctype="multipart/form-data" action="." method="post" + onsubmit="return confirm('Do you really want to delete this item?');">{% csrf_token %} +<table> +{{form}} +</table> +<input type="submit" value="{% trans "Delete" %}"/> +</form> +</div> +{% endblock %} |
