From 990807fa2fcdea85c20e42359a00fbe0fa3a21d0 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Mon, 19 Oct 2020 21:00:49 +0100 Subject: can now add a note to the system for an organisation but not listed on detail page yet --- .../templates/register/create_note_event_form.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ctrack/register/templates/register/create_note_event_form.html (limited to 'ctrack/register/templates') 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 %} +

Create a Note

+

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

+
+ {% csrf_token %} + {{ form|crispy }} + + Cancel +
+{% endblock form %} -- cgit v1.2.3