Implement Manticore fully and re-theme

This commit is contained in:
2026-03-11 02:19:08 +00:00
parent da044be68c
commit cbedcd67f6
46 changed files with 3444 additions and 944 deletions

View File

@@ -30,7 +30,7 @@ def settings_hierarchy_nav(request):
business_plans_href = reverse("business_plan_inbox")
tasks_href = reverse("tasks_settings")
translation_href = reverse("translation_settings")
availability_href = reverse("availability_settings")
behavioral_href = reverse("behavioral_signals_settings")
categories = {
"general": {
@@ -99,6 +99,7 @@ def settings_hierarchy_nav(request):
"translation_settings",
"translation_preview",
"availability_settings",
"behavioral_signals_settings",
"codex_settings",
"codex_approval",
},
@@ -116,7 +117,12 @@ def settings_hierarchy_nav(request):
translation_href,
lambda: url_name in {"translation_settings", "translation_preview"},
),
("Availability", availability_href, lambda: path == availability_href),
(
"Behavioral Signals",
behavioral_href,
lambda: url_name
in {"availability_settings", "behavioral_signals_settings"},
),
],
},
}