From 7d05011daa1ba38035a129a7879c2def51c8c924 Mon Sep 17 00:00:00 2001 From: gilesb Date: Sat, 10 Jan 2026 02:44:52 +0000 Subject: [PATCH] Add Storage link to L1 navigation bars Co-Authored-By: Claude Opus 4.5 --- server.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/server.py b/server.py index 8fe6bbd..f32ea15 100644 --- a/server.py +++ b/server.py @@ -601,6 +601,7 @@ def render_home_html(actor_id: Optional[str] = None) -> str: Runs Recipes Media + Storage API Docs {user_section} @@ -3802,6 +3803,7 @@ def render_page(title: str, content: str, actor_id: Optional[str] = None, active runs_active = "border-b-2 border-blue-500 text-white" if active_tab == "runs" else "text-gray-400 hover:text-white" recipes_active = "border-b-2 border-blue-500 text-white" if active_tab == "recipes" else "text-gray-400 hover:text-white" media_active = "border-b-2 border-blue-500 text-white" if active_tab == "media" else "text-gray-400 hover:text-white" + storage_active = "border-b-2 border-blue-500 text-white" if active_tab == "storage" else "text-gray-400 hover:text-white" return f""" @@ -3825,6 +3827,7 @@ def render_page(title: str, content: str, actor_id: Optional[str] = None, active Runs Recipes Media + Storage Download Client @@ -3864,6 +3867,7 @@ def render_ui_html(actor_id: Optional[str] = None, tab: str = "runs") -> str: runs_active = "border-b-2 border-blue-500 text-white" if tab == "runs" else "text-gray-400 hover:text-white" recipes_active = "border-b-2 border-blue-500 text-white" if tab == "recipes" else "text-gray-400 hover:text-white" media_active = "border-b-2 border-blue-500 text-white" if tab == "media" else "text-gray-400 hover:text-white" + storage_active = "border-b-2 border-blue-500 text-white" if tab == "storage" else "text-gray-400 hover:text-white" if tab == "runs": content_url = "/ui/runs" @@ -3894,6 +3898,7 @@ def render_ui_html(actor_id: Optional[str] = None, tab: str = "runs") -> str: Runs Recipes Media + Storage Download Client