From d206e37f3bb22f9173cc7f38e781afd7fa602d9e Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Thu, 14 Aug 2025 22:49:37 +0000 Subject: [PATCH] Update web/templates/entry_add.html --- web/templates/entry_add.html | 80 +++++++++++++++++++++++++----------- 1 file changed, 56 insertions(+), 24 deletions(-) diff --git a/web/templates/entry_add.html b/web/templates/entry_add.html index 722b485..28d8de3 100644 --- a/web/templates/entry_add.html +++ b/web/templates/entry_add.html @@ -8,36 +8,36 @@

Record New Illustration

Use this form to save a new illustration that you encountered. Be sure to properly catagorize your entry with comma seperated subjects and to use the standard bible book abbreviations when recording a scripture.

-
+ {% 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 %}
@@ -45,29 +45,32 @@
- + {{ 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 }} -
+ + {{ form.date_added }} {% if form.date_added.errors %}
{{ form.date_added.errors|striptags }}
{% endif %} +
+
+ + {{ form.date_edited }} {% if form.date_edited.errors %}
{{ form.date_edited.errors|striptags }}
{% endif %}
@@ -83,9 +86,37 @@
+ + {% endblock %} \ No newline at end of file