Renamed theme tab to customisation tab. Added basic theme crud

This commit is contained in:
2025-07-21 22:16:34 +02:00
parent 2c9a87bf3e
commit a480ae9c50
10 changed files with 407 additions and 163 deletions

View File

@@ -4,12 +4,12 @@ public static class UiConstants
{
public static readonly string[] AdminNavNames =
[
"Overview", "Theme", "Files", "Hangfire", "Advanced", "Diagnose"
"Overview", "Customisation", "Files", "Hangfire", "Advanced", "Diagnose"
];
public static readonly string[] AdminNavLinks =
[
"/admin/system", "/admin/system/theme", "/admin/system/files", "/admin/system/hangfire",
"/admin/system", "/admin/system/customisation", "/admin/system/files", "/admin/system/hangfire",
"/admin/system/advanced", "/admin/system/diagnose"
];
}