aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/register/templates
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-10-19 21:00:49 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-10-19 21:00:49 +0100
commit990807fa2fcdea85c20e42359a00fbe0fa3a21d0 (patch)
treeac492733270ffe6c32fc2b64eda9b46ea41a8e36 /ctrack/register/templates
parentc07178fb19f55ea8354b2de153a2d41c66d58f32 (diff)
can now add a note to the system for an organisation but not listed on detail page yet
Diffstat (limited to 'ctrack/register/templates')
-rw-r--r--ctrack/register/templates/register/create_note_event_form.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/ctrack/register/templates/register/create_note_event_form.html b/ctrack/register/templates/register/create_note_event_form.html
new file mode 100644
index 0000000..d6b83eb
--- /dev/null
+++ b/ctrack/register/templates/register/create_note_event_form.html
@@ -0,0 +1,17 @@
+{% extends "snippets/event_form_base.html" %}
+
+{% load static %}
+{% load crispy_forms_tags %}
+
+{% block form %}
+ <h3 class="mt-2">Create a Note</h3>
+ <p>Notes are associated with an organisation and are not intended to be
+ formal records of events should not involve any interaction with a person
+ from that organisation. Use them to record observations, notes, reminders, etc</p>
+ <form method="post">
+ {% csrf_token %}
+ {{ form|crispy }}
+ <button type="submit" class="btn btn-success">Submit</button>
+ <a href="{{ org.get_absolute_url }}" class="btn btn-danger" type="button">Cancel</a>
+ </form>
+{% endblock form %}