From 1b40e935a10b43d36d0e1f49d0bcb3c132e69a83 Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Wed, 13 Aug 2025 20:34:38 +0000 Subject: [PATCH] Update web/templates/entry_edit.html first attempt at making this thing look pretty --- web/templates/entry_edit.html | 129 ++++++++++++++++++++++++++-------- 1 file changed, 98 insertions(+), 31 deletions(-) diff --git a/web/templates/entry_edit.html b/web/templates/entry_edit.html index c869b0e..0924b35 100644 --- a/web/templates/entry_edit.html +++ b/web/templates/entry_edit.html @@ -1,34 +1,101 @@ {% extends "base.html" %} -{% block title %}Edit Entry - Illustrations DB{% endblock %} +{% block body_class %}themed-bg{% endblock %} +{% load static %} + {% block content %} -
-
Editing: Record {{ position }} of {{ count }}
-
Cancel
-
-
{% csrf_token %} -
-

Edit Entry

-
-
{{ form.talk_title }}
-
{{ form.talk_number }}
-
-
-
{{ form.source }}
-
{{ form.entry_code }}
-
- {{ form.subject }} - {{ form.illustration }} - {{ form.application }} -
-
{{ form.scripture_raw }}
-
- {{ form.date_added }} - {{ form.date_edited }} -
-
-
- -
+
+ + +
+
+ ← Back to Entry + Editing: #{{ entry.id }}
- -{% endblock %} +
+ Cancel + +
+
+ + +
+
+ {% csrf_token %} + +
+ + +
+ + +
Examples: Love, Faith, Family (comma-separated tags work nicely)
+
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
Separate multiple references with semicolons ;. These will show as clickable chips.
+
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ +
+ + +
+ +
+ + +
+ Cancel + +
+
+
+ +
+{% endblock %} \ No newline at end of file