This commit is contained in:
Joshua Laymon
2025-08-12 22:29:18 -05:00
parent 3458501272
commit 6426211800
7 changed files with 23 additions and 16 deletions
+2 -2
View File
@@ -18,11 +18,11 @@
<div class="row">
<div>
<label>Subject</label>
<div class="chips">{% for t in entry.subject.split(',') %}{% if t.strip %}<span class="chip">{{ t.strip }}</span>{% endif %}{% endfor %}</div>
<div class="chips">{% for t in subject_list %}<span class="chip">{{ t }}</span>{% endfor %}</div>
</div>
<div>
<label>Scripture</label>
<div class="chips">{% for t in entry.scripture_raw.split(';') %}{% if t.strip %}<span class="chip" style="background:#eef4ff;">{{ t.strip }}</span>{% endif %}{% endfor %}</div>
<div class="chips">{% for t in scripture_list %}<span class="chip" style="background:#eef4ff;">{{ t }}</span>{% endfor %}</div>
</div>
</div>
<div class="spacer"></div>