From 62a4c700c3acefa91d0b7710fdc2b3b8899ecfed Mon Sep 17 00:00:00 2001 From: FirephoenixX02 Date: Sat, 6 Sep 2025 15:37:36 +0200 Subject: [PATCH] Improve design and add dark mode with toggle button --- static/index.html | 870 ++++++++++++++++++++++++++++++---------------- 1 file changed, 569 insertions(+), 301 deletions(-) diff --git a/static/index.html b/static/index.html index 8237c79..5793ef4 100644 --- a/static/index.html +++ b/static/index.html @@ -1,338 +1,606 @@ - + - - -NOMYO Router Dashboard - - - - -

Router Dashboard

+ + + NOMYO Router Dashboard + + + + + +

Router Dashboard

-
- -
-
-

Available Models (Tags)

-
- - - - -
-
+ + +
+ +
+
+

+ Available Models (Tags) +

+
+ + + + +
+
- - - -
ModelDigest
Loading…
-
+ + + + + + + + + + + + +
ModelDigest
Loading…
+
- -
-

Running Models (PS)

- - - - - - - - - - - -
ModelParamsQuantCtxDigest
Loading…
+ +
+

Running Models (PS)

+ + + + + + + + + + + + + + + +
ModelParamsQuantCtxDigest
Loading…
- -
-
-
+ +
+
+
+
+

Configured Endpoints

+ + + + + + + + + + + + + +
EndpointStatusVersion
Loading…
+
-

Configured Endpoints

- - - - - - - - - -
EndpointStatusVersion
Loading…
+ + /* ---------- Init ---------- */ + window.addEventListener("load", () => { + loadEndpoints(); + loadTags(); + loadPS(); + loadUsage(); + setInterval(loadPS, 60_000); + setInterval(loadEndpoints, 300_000); + }); + - - - \ No newline at end of file + + +