feat: add Trends sidebar nav item + 3-view switching (Task E.2)

This commit is contained in:
Andrew Charlwood
2026-02-07 22:12:13 +00:00
parent 956ad8ca7b
commit 190aefdf56
5 changed files with 40 additions and 17 deletions
+9
View File
@@ -29,6 +29,7 @@ app.layout = dmc.MantineProvider(
"selected_trusts": [],
"active_view": "patient-pathways",
"selected_comparison_directorate": None,
"selected_trends_directorate": None,
}),
dcc.Store(id="chart-data", storage_type="memory"),
dcc.Store(id="reference-data", storage_type="session"),
@@ -64,6 +65,14 @@ app.layout = dmc.MantineProvider(
make_tc_dashboard(),
],
),
# Trends view (hidden initially)
html.Div(
id="trends-view",
style={"display": "none"},
children=[
html.H3("Trends", style={"padding": "24px"}),
],
),
],
),
make_footer(),