From 0aa8fd9572c754d66551f5348b1c3cfe291d50ab Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Sun, 17 Aug 2025 03:38:20 +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 28d8de3..d4bc6bf 100644 --- a/web/templates/entry_add.html +++ b/web/templates/entry_add.html @@ -14,31 +14,31 @@
- {{ form.subject }} + {{ form.subject.as_widget(attrs={"placeholder":"Enter comma-separated subjects"}) }} {% if form.subject.errors %}
{{ form.subject.errors|striptags }}
{% endif %}
- {{ form.illustration }} + {{ form.illustration.as_widget(attrs={"placeholder":"Write the full illustration here"}) }} {% if form.illustration.errors %}
{{ form.illustration.errors|striptags }}
{% endif %}
- {{ form.application }} + {{ form.application.as_widget(attrs={"placeholder":"Explain the lesson or application"}) }} {% if form.application.errors %}
{{ form.application.errors|striptags }}
{% endif %}
- {{ form.scripture_raw }} + {{ form.scripture_raw.as_widget(attrs={"placeholder":"e.g. John 3:16; use standard abbreviations"}) }} {% if form.scripture_raw.errors %}
{{ form.scripture_raw.errors|striptags }}
{% endif %}
- {{ form.source }} + {{ form.source.as_widget(attrs={"placeholder":"Where did you hear or read this illustration?"}) }} {% if form.source.errors %}
{{ form.source.errors|striptags }}
{% endif %}
@@ -60,7 +60,7 @@
- {{ form.entry_code }} + {{ form.entry_code.as_widget(attrs={"placeholder":"Optional reference code"}) }} {% if form.entry_code.errors %}
{{ form.entry_code.errors|striptags }}
{% endif %}