diff options
Diffstat (limited to 'ctrack/register/templates')
-rw-r--r-- | ctrack/register/templates/register/create_note_event_form.html | 17 |
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 %} |