Update web/templates/entry_add.html
This commit is contained in:
parent
e002ea36dd
commit
db9c6e1b84
@ -14,9 +14,7 @@
|
||||
<div class="form-grid">
|
||||
<div class="form-row">
|
||||
<label class="f-label">Subject</label>
|
||||
{{ form.subject.as_widget(attrs={
|
||||
'placeholder': 'Separate subjects with commas (e.g., Faith, Love, Patience)'
|
||||
}) }}
|
||||
{{ form.subject }}
|
||||
{% if form.subject.errors %}<div class="err">{{ form.subject.errors|striptags }}</div>{% endif %}
|
||||
</div>
|
||||
|
||||
@ -35,16 +33,12 @@
|
||||
<div class="form-row two">
|
||||
<div>
|
||||
<label class="f-label">Scripture</label>
|
||||
{{ form.scripture_raw.as_widget(attrs={
|
||||
'placeholder': 'Use WOL abbreviations; separate refs with ; (e.g., Joh 3:16; Ps 23:1-4)'
|
||||
}) }}
|
||||
{{ form.scripture_raw }}
|
||||
{% if form.scripture_raw.errors %}<div class="err">{{ form.scripture_raw.errors|striptags }}</div>{% endif %}
|
||||
</div>
|
||||
<div>
|
||||
<label class="f-label">Source</label>
|
||||
{{ form.source.as_widget(attrs={
|
||||
'placeholder': 'Use correct WOL mnemonic for linking; otherwise Google search'
|
||||
}) }}
|
||||
{{ form.source }}
|
||||
{% if form.source.errors %}<div class="err">{{ form.source.errors|striptags }}</div>{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
@ -52,9 +46,7 @@
|
||||
<div class="form-row two">
|
||||
<div>
|
||||
<label class="f-label">Talk Title</label>
|
||||
{{ form.talk_title.as_widget(attrs={
|
||||
'placeholder': 'Will auto-fill when a Talk Number is selected'
|
||||
}) }}
|
||||
{{ form.talk_title }}
|
||||
{% if form.talk_title.errors %}<div class="err">{{ form.talk_title.errors|striptags }}</div>{% endif %}
|
||||
</div>
|
||||
<div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user