From e002ea36dd8f23a78f5f9931ab2f89aed95a2650 Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Sat, 6 Sep 2025 19:23:08 +0000 Subject: [PATCH] Update web/templates/entry_add.html --- web/templates/entry_add.html | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/web/templates/entry_add.html b/web/templates/entry_add.html index 5aa55b3..0805224 100644 --- a/web/templates/entry_add.html +++ b/web/templates/entry_add.html @@ -14,7 +14,9 @@
- {{ form.subject }} + {{ form.subject.as_widget(attrs={ + 'placeholder': 'Separate subjects with commas (e.g., Faith, Love, Patience)' + }) }} {% if form.subject.errors %}
{{ form.subject.errors|striptags }}
{% endif %}
@@ -33,12 +35,16 @@
- {{ form.scripture_raw }} + {{ form.scripture_raw.as_widget(attrs={ + 'placeholder': 'Use WOL abbreviations; separate refs with ; (e.g., Joh 3:16; Ps 23:1-4)' + }) }} {% if form.scripture_raw.errors %}
{{ form.scripture_raw.errors|striptags }}
{% endif %}
- {{ form.source }} + {{ form.source.as_widget(attrs={ + 'placeholder': 'Use correct WOL mnemonic for linking; otherwise Google search' + }) }} {% if form.source.errors %}
{{ form.source.errors|striptags }}
{% endif %}
@@ -46,7 +52,9 @@
- {{ form.talk_title }} + {{ form.talk_title.as_widget(attrs={ + 'placeholder': 'Will auto-fill when a Talk Number is selected' + }) }} {% if form.talk_title.errors %}
{{ form.talk_title.errors|striptags }}
{% endif %}