summaryrefslogtreecommitdiffstats
path: root/engagements/templates
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-09-10 15:36:13 +0100
committerMatthew Lemon <y@yulqen.org>2024-09-10 15:36:13 +0100
commit15520388a725dd9763e80ad617f31aea3b2ddb67 (patch)
treed28670b8abfc405f6e3541805e59b588735696f3 /engagements/templates
parentb87f2e3410cf3445a4eeb1ca16d04cc7de71c330 (diff)
wip: testing the view containing the ES create form
Diffstat (limited to 'engagements/templates')
-rw-r--r--engagements/templates/engagements/engagement_strategy_form.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/engagements/templates/engagements/engagement_strategy_form.html b/engagements/templates/engagements/engagement_strategy_form.html
new file mode 100644
index 0000000..6b2f26c
--- /dev/null
+++ b/engagements/templates/engagements/engagement_strategy_form.html
@@ -0,0 +1,17 @@
+{% extends "core/base.html" %}}
+
+{% block content %}
+
+<h1>Create Engagement Strategy</h1>
+
+<div class="row w-full">
+ <div>
+ <form target="{% url "engagements:es-create" %}" method="post">
+ {% csrf_token %}
+ {{ form.as_p }}
+ <button type="submit">Create</button>
+ </form>
+ </div>
+</div>
+
+{% endblock content %}