diff --git a/web/templates/entry_add.html b/web/templates/entry_add.html new file mode 100644 index 0000000..e2c3ead --- /dev/null +++ b/web/templates/entry_add.html @@ -0,0 +1,84 @@ +{% extends "base.html" %} +{% block title %}New Entry - Illustrations DB{% endblock %} +{% block body_class %}themed-bg{% endblock %} + +{% block content %} +
+

New Entry

+

Add a new illustration. Subject, Illustration, and Application are the most important fields.

+ +
+ {% csrf_token %} + +
+
+ + {{ form.subject }} + {% if form.subject.errors %}
{{ form.subject.errors|striptags }}
{% endif %} +
+ +
+ + {{ form.illustration }} + {% if form.illustration.errors %}
{{ form.illustration.errors|striptags }}
{% endif %} +
+ +
+ + {{ form.application }} + {% if form.application.errors %}
{{ form.application.errors|striptags }}
{% endif %} +
+ +
+
+ + {{ form.scripture_raw }} + {% if form.scripture_raw.errors %}
{{ form.scripture_raw.errors|striptags }}
{% endif %} +
+
+ + {{ form.source }} + {% if form.source.errors %}
{{ form.source.errors|striptags }}
{% endif %} +
+
+ +
+
+ + {{ form.talk_title }} + {% if form.talk_title.errors %}
{{ form.talk_title.errors|striptags }}
{% endif %} +
+
+ + {{ form.talk_number }} + {% if form.talk_number.errors %}
{{ form.talk_number.errors|striptags }}
{% endif %} +
+
+ +
+
+ + {{ form.entry_code }} + {% if form.entry_code.errors %}
{{ form.entry_code.errors|striptags }}
{% endif %} +
+
+ +
+ {{ form.date_added }} {{ form.date_edited }} +
+ {% if form.date_added.errors %}
{{ form.date_added.errors|striptags }}
{% endif %} + {% if form.date_edited.errors %}
{{ form.date_edited.errors|striptags }}
{% endif %} +
+
+
+ +
+
+
+ Cancel + +
+
+
+
+{% endblock %} \ No newline at end of file