Split queue into dedicated page

This commit is contained in:
Dymas
2026-05-22 23:17:00 +02:00
parent 9d4baea057
commit fe094a7112
11 changed files with 522 additions and 211 deletions
+3
View File
@@ -42,6 +42,7 @@ class HandlerContext:
get_watchlist_refresh_status: object
http_error: object
index_html: str
queue_html: str
remove_from_watchlist: object
runtime_state: object
save_runtime_config: object
@@ -211,6 +212,8 @@ class Handler(BaseHTTPRequestHandler):
self.ensure_client_access()
if parsed.path == "/":
self.html(Handler._context(self).index_html)
elif parsed.path == "/queue":
self.html(Handler._context(self).queue_html)
elif parsed.path == "/config":
self.html(Handler._context(self).config_html)
elif parsed.path == "/watchlist":