summaryrefslogtreecommitdiff
path: root/ishtar_common
diff options
context:
space:
mode:
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
commit95ac7dd7492eb0d469f84deacfa88e84d442c203 (patch)
treefd9aff4560f47467006257c9a601500cb6538034 /ishtar_common
parent3a81d40b69a7f86731d45ac73188eed63fc14c77 (diff)
downloadIshtar-95ac7dd7492eb0d469f84deacfa88e84d442c203.tar.bz2
Ishtar-95ac7dd7492eb0d469f84deacfa88e84d442c203.zip
Delete basket
Diffstat (limited to 'ishtar_common')
-rw-r--r--ishtar_common/templates/ishtar/form_delete.html14
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 %}