refactor: replace month dropdown with week dropdown and update related components

feat: add feedback functionality and modal for category feedback
style: add feedback button styles in CSS
docs: add explanation tab for dashboard usage instructions
This commit is contained in:
2025-09-07 20:16:56 +02:00
parent 2d73ae8d63
commit e1b817252c
14 changed files with 281 additions and 90 deletions

View File

@ -1,6 +1,6 @@
# initial commit
from dash import Dash
from dash_bootstrap_components.themes import BOOTSTRAP
import dash_bootstrap_components as dbc
from src.components.layout import create_layout
from src.data.loader_gz import load_spc_data
@ -21,7 +21,7 @@ def main() -> None:
# load the data and create the data manager
data = load_spc_data(config["DATA_PATH"])
app = Dash(external_stylesheets=[BOOTSTRAP])
app = Dash(external_stylesheets=[dbc.themes.LUX])
app.title = "Reliability Dashboard"
app.layout = create_layout(app, data)
app.run()