aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates/products/remove.html
diff options
context:
space:
mode:
Diffstat (limited to 'servo/templates/products/remove.html')
-rwxr-xr-xservo/templates/products/remove.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/servo/templates/products/remove.html b/servo/templates/products/remove.html
new file mode 100755
index 0000000..e951656
--- /dev/null
+++ b/servo/templates/products/remove.html
@@ -0,0 +1,13 @@
+{% extends "modal.html" %}
+{% load i18n %}
+
+{% block header %}
+ {% blocktrans with code=product.code %}Really delete product "{{ code }}"?{% endblocktrans %}
+{% endblock header %}
+
+{% block footer %}
+ <form action="{{ action }}" method="post">
+ {% csrf_token %}
+ <button type="submit" class="btn btn-danger">{% trans "Delete" %}</buttom>
+ </form>
+{% endblock footer %}