aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/register/templates
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-06-01 16:02:05 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-06-01 16:02:05 +0100
commitb58ec416d86fc8a4c7816fe96d2b1030deff37a5 (patch)
tree7cbf114b5da953cb2708f61653e9d7cc68682306 /ctrack/register/templates
parentf5cda7311f42b9ec9f4627121421b46b55e8346c (diff)
can add an engagement event
Diffstat (limited to 'ctrack/register/templates')
-rw-r--r--ctrack/register/templates/register/engagementevent_form.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/ctrack/register/templates/register/engagementevent_form.html b/ctrack/register/templates/register/engagementevent_form.html
new file mode 100644
index 0000000..972ad52
--- /dev/null
+++ b/ctrack/register/templates/register/engagementevent_form.html
@@ -0,0 +1,32 @@
+{% extends "base.html" %}
+
+{% block title %}
+ Register a new OES event
+{% endblock title %}
+
+{% load crispy_forms_tags %}
+
+{% block content %}
+ <div class="container mt-3">
+ <div class="row">
+ <div class="col-md-12 pl-0 my-2">
+ <h4>Register a new OES event</h4>
+ </div>
+ </div>
+ <div class="row">
+ <div class="col-md-7 pt-2 border bg-light">
+ {% crispy form %}
+ </div>
+ <div class="col-sm-5">
+ <div class="card" style="width: 18rem;">
+ <div class="card-body">
+ <h5 class="card-title">Help on Engagement Events</h5>
+ <p class="card-text">An organisation is the parent/operating company. There is probably advice and
+ proper definitions for this somewhere. Maybe if you click the link below, it will take you there?</p>
+ <a href="#" class="btn btn-primary">Go somewhere</a>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+{% endblock content %}