From c68f78cf1427ce543a64abef8a5977d2b5578940 Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Wed, 13 Aug 2025 05:57:36 +0000 Subject: [PATCH] Update web/templates/entry_view.html --- web/templates/entry_view.html | 127 +++++++++++++++++----------------- 1 file changed, 62 insertions(+), 65 deletions(-) diff --git a/web/templates/entry_view.html b/web/templates/entry_view.html index a19fd61..11ae244 100644 --- a/web/templates/entry_view.html +++ b/web/templates/entry_view.html @@ -2,99 +2,96 @@ {% load static %} {% block content %} -
+
- -
-
+ +
+
← Back to Search {% if count %} - {{ position }} of {{ count }} + {{ position }} of {{ count }} {% endif %}
-
+
- +
- +
{% if user.is_authenticated and user.is_staff %} - Unlock / Edit + Unlock / Edit Delete {% endif %}
- -
-
-

- {% if entry.talk_title %}{{ entry.talk_title }}{% else %}Untitled{% endif %} -

-
- {% if entry.talk_number %}Talk #{{ entry.talk_number }}{% endif %} - {% if entry.entry_code %}Code: {{ entry.entry_code }}{% endif %} - {% if entry.date_added %}Added: {{ entry.date_added }}{% endif %} - {% if entry.date_edited %}Edited: {{ entry.date_edited }}{% endif %} + +
+ +

+ {{ entry.subject|default:"(no subject)" }} +

+ + +
+ +
+ {{ entry.illustration|linebreaksbr|default:"—" }}
-
-
-
Subject
-
- {% if subject_list %} - {% for s in subject_list %}{{ s }}{% endfor %} - {% else %} - - {% endif %} -
+ +
+ +
+ {{ entry.application|linebreaksbr|default:"—" }} +
+
+ + +
+
+
Source
+
{{ entry.source|default:"—" }}
-
-
Source
-
{{ entry.source|default:"—" }}
-
- -
-
Illustration
-
{{ entry.illustration|linebreaksbr|default:"—" }}
-
- -
-
Application
-
{{ entry.application|linebreaksbr|default:"—" }}
-
- -
-
Scripture
-
+
+
Scripture
+
{% if scripture_list %} - {% for sc in scripture_list %}{{ sc }}{% endfor %} - {% else %} - - {% endif %} + {% for sc in scripture_list %} + {{ sc }} + {% endfor %} + {% else %}—{% endif %} +
+
+ +
+
Code
+
{{ entry.entry_code|default:"—" }}
+
+ +
+
Talk
+
+ {% if entry.talk_title %}{{ entry.talk_title }}{% else %}—{% endif %} + {% if entry.talk_number %}#{{ entry.talk_number }}{% endif %} +
+
+ +
+
Dates
+
+ {% if entry.date_added %}Added: {{ entry.date_added }}{% else %}Added: —{% endif %} + {% if entry.date_edited %} • Edited: {{ entry.date_edited }}{% endif %}
- -
-
- - -
-
{{ position }} / {{ count }}
-
- - -
-
-
{% endblock %} \ No newline at end of file