From 0c2a092e8d8ad33a1c306ee9efca0da96eb56415 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Sat, 24 Nov 2018 22:29:02 -0600 Subject: way to much for a single commit --- design/templates/notes/notes_create.html | 52 ++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 design/templates/notes/notes_create.html (limited to 'design/templates/notes/notes_create.html') diff --git a/design/templates/notes/notes_create.html b/design/templates/notes/notes_create.html new file mode 100644 index 0000000..9bbdb26 --- /dev/null +++ b/design/templates/notes/notes_create.html @@ -0,0 +1,52 @@ +{% extends 'base.html' %} + +{% block extrastyles %} + +{% endblock %} +{% block content %} +
+

Create a new note

+
+{% csrf_token %} +{{ form.non_field_errors }} +{% for field in form %} +
+{{field.label_tag}} +{{field}} +{% if field.errors %}{{field.errors}}{% endif %} +
+{% if field.name == 'body_qjson' %} +
+
+
+{% endif %} +{% endfor %} +

+
+
+{% endblock %} + +{% block jsinclude %} + + +{% endblock %} + + -- cgit v1.2.3