diff --git a/web/templates/settings/home.html b/web/templates/settings/home.html index e61fbc3..d06ed9d 100644 --- a/web/templates/settings/home.html +++ b/web/templates/settings/home.html @@ -1,11 +1,131 @@ -{# templates/settings/home.html #} {% extends "base.html" %} - -{% block title %}Settings{% endblock %} +{% block body_class %}settings-bg{% endblock %} {% block content %} -
-

Settings

-

Add your settings here as you go.

+
+

Settings

+ +
+ +
+

Scripture Normalizer

+

+ Standardizes Bible references (book abbreviations, separators, and repeats book names as needed). + Use preview first; Apply will modify all scripture_raw fields. +

+
+
+ + +
+ {% if user.is_authenticated and user.is_staff %} +
+ {% csrf_token %} + +
+ {% endif %} +
+
+ +
+ + +
+

Source Normalizer

+

+ Converts Watchtower/Awake!/Yearbook/KM references (e.g., “March 15, 2013 WT page 14”) into WOL short-codes + like w13 3/15 p.14. Non-JW sources are left unchanged. +

+
+
+ + +
+ {% if user.is_authenticated and user.is_staff %} +
+ {% csrf_token %} + +
+ {% endif %} +
+
+ +
+ + +
+

Subject Normalizer

+

+ Normalize the Subject field so individual subjects are comma-separated. + Preserves multi-word subjects; lightly fixes separators like “;” and spaced dashes. + Uses your subjects.txt catalog when available. +

+
+
+ + +
+ {% if user.is_authenticated and user.is_staff %} +
+ {% csrf_token %} + +
+ {% endif %} +
+
+
+ + {% endblock %} \ No newline at end of file