From afbb52ed8a118833ad0ab7a7831628d6820277f3 Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Thu, 14 Aug 2025 18:33:24 +0000 Subject: [PATCH] Update web/templates/entry_view.html --- web/templates/entry_view.html | 200 +++++++++++++++++----------------- 1 file changed, 103 insertions(+), 97 deletions(-) diff --git a/web/templates/entry_view.html b/web/templates/entry_view.html index 8ca9dab..8e09dd2 100644 --- a/web/templates/entry_view.html +++ b/web/templates/entry_view.html @@ -1,119 +1,125 @@ {% extends "base.html" %} -{% block body_class %}themed-bg{% endblock %} {% load static %} {% block content %} -
+
- -
-
- ← Back to Search - {% if count %} - {{ position }} of {{ count }} - {% endif %} -
-
-
- - - -
-
- - - -
- - {% if user.is_authenticated and user.is_staff %} - Unlock / Edit - Delete + +
+
+ {% if subject_list %} + {% for s in subject_list %} + {{ s }} + {% endfor %} + {% else %} + (no subject) {% endif %}
- -
- - -
-
- {% if subject_list %} - {% for s in subject_list %} - {{ s }} - {% endfor %} - {% else %} - (no subject) - {% endif %} -
+ + {% if scripture_list %} + + {% endif %} - + + {% if entry.illustration %}
- -
- {{ entry.illustration|linebreaksbr|default:"—" }} -
+

Illustration

+

{{ entry.illustration|linebreaksbr }}

+ {% endif %} - + + {% if entry.application %}
- -
- {{ entry.application|linebreaksbr|default:"—" }} -
+

Application

+

{{ entry.application|linebreaksbr }}

+ {% endif %} - -
-
-
Source
-
{{ entry.source|default:"—" }}
-
- -
-
Scripture
-
- {% if scripture_list %} - {% 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 %} -
-
+ + {% if entry.source %} +
+

Source

+

{{ entry.source }}

+ {% endif %} + + + {% if entry.talk_number or entry.talk_title %} +
+

Talk Info

+ {% if entry.talk_number %} +

Number: {{ entry.talk_number }}

+ {% endif %} + {% if entry.talk_title %} +

Title: {{ entry.talk_title }}

+ {% endif %} +
+ {% endif %} + + +
+ + {% endblock %} \ No newline at end of file