Remove page credits, rename staffing growth chart

- Hide the Plotly logo credit on all dashboard charts
- Remove author name from the About page
- Rename "Management vs Faculty vs Enrollment Growth" to "Management Growth"

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
emfurst 2026-08-14 12:11:49 -04:00
commit 54a019693f
7 changed files with 23 additions and 23 deletions

View file

@ -107,10 +107,10 @@ def layout(conn: duckdb.DuckDBPyConnection):
kpi_row,
html.Div(
[
html.Div(dcc.Graph(figure=unit_fig), style={"flex": "1"}),
html.Div(dcc.Graph(figure=pie_fig), style={"flex": "1"}),
html.Div(dcc.Graph(figure=unit_fig, config={"displaylogo": False}), style={"flex": "1"}),
html.Div(dcc.Graph(figure=pie_fig, config={"displaylogo": False}), style={"flex": "1"}),
],
style={"display": "flex", "gap": "16px"},
),
dcc.Graph(figure=cat_fig),
dcc.Graph(figure=cat_fig, config={"displaylogo": False}),
])