aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates/customers/delete_group.html
diff options
context:
space:
mode:
Diffstat (limited to 'servo/templates/customers/delete_group.html')
-rwxr-xr-xservo/templates/customers/delete_group.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/servo/templates/customers/delete_group.html b/servo/templates/customers/delete_group.html
new file mode 100755
index 0000000..1c06e0f
--- /dev/null
+++ b/servo/templates/customers/delete_group.html
@@ -0,0 +1,17 @@
+{% extends "modal.html" %}
+{% load i18n %}
+
+{% block header %}
+ {% trans "Delete customer group?" %}
+{% endblock header %}
+
+{% block body %}
+ {% trans "This action will not delete the customers in this group." %}
+{% endblock body %}
+
+{% block footer %}
+ <form method="post" action="{{ request.path }}">
+ {% csrf_token %}
+ <button type="submit" class="btn btn-danger">{% trans "Delete" %}</button>
+ </form>
+{% endblock footer %}