From 0fd6e553534568798a297d5a45a235b5b0aa0cac Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Sun, 17 Aug 2025 03:38:46 +0000 Subject: [PATCH] Update web/templates/entry_add.html --- web/templates/entry_add.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/web/templates/entry_add.html b/web/templates/entry_add.html index d4bc6bf..28d8de3 100644 --- a/web/templates/entry_add.html +++ b/web/templates/entry_add.html @@ -14,31 +14,31 @@
- {{ form.subject.as_widget(attrs={"placeholder":"Enter comma-separated subjects"}) }} + {{ form.subject }} {% if form.subject.errors %}
{{ form.subject.errors|striptags }}
{% endif %}
- {{ form.illustration.as_widget(attrs={"placeholder":"Write the full illustration here"}) }} + {{ form.illustration }} {% if form.illustration.errors %}
{{ form.illustration.errors|striptags }}
{% endif %}
- {{ form.application.as_widget(attrs={"placeholder":"Explain the lesson or application"}) }} + {{ form.application }} {% if form.application.errors %}
{{ form.application.errors|striptags }}
{% endif %}
- {{ form.scripture_raw.as_widget(attrs={"placeholder":"e.g. John 3:16; use standard abbreviations"}) }} + {{ form.scripture_raw }} {% if form.scripture_raw.errors %}
{{ form.scripture_raw.errors|striptags }}
{% endif %}
- {{ form.source.as_widget(attrs={"placeholder":"Where did you hear or read this illustration?"}) }} + {{ form.source }} {% if form.source.errors %}
{{ form.source.errors|striptags }}
{% endif %}
@@ -60,7 +60,7 @@
- {{ form.entry_code.as_widget(attrs={"placeholder":"Optional reference code"}) }} + {{ form.entry_code }} {% if form.entry_code.errors %}
{{ form.entry_code.errors|striptags }}
{% endif %}