aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/register/templates
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-09-29 16:21:13 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-09-29 16:21:13 +0100
commit1e2993a8e092bf4b725ebc23d6e79fe60a8b8978 (patch)
tree7f10d8d47d6abcac3441f5d2c653e2d74e49fad1 /ctrack/register/templates
parent7ad343a875a8dbd667824685065b905b14a49870 (diff)
Delete button now works for Engagement Event
Diffstat (limited to 'ctrack/register/templates')
-rw-r--r--ctrack/register/templates/register/engagementevent_confirm_delete.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/ctrack/register/templates/register/engagementevent_confirm_delete.html b/ctrack/register/templates/register/engagementevent_confirm_delete.html
new file mode 100644
index 0000000..20aec9e
--- /dev/null
+++ b/ctrack/register/templates/register/engagementevent_confirm_delete.html
@@ -0,0 +1,14 @@
+{% extends "base.html" %}
+
+{% block title %}
+ Confirm Deletion
+{% endblock title %}
+
+{% load crispy_forms_tags %}
+
+{% block content %}
+ <form method="post">{% csrf_token %}
+ <p>Are you sure you want to delete "{{ object }}"?</p>
+ <input type="submit" value="Confirm">
+</form>
+{% endblock content %}