Create multi page layout (#147)

Created two pages (home and company), page reloads after company
selection in dropdown or clicking the home button.
This commit is contained in:
KM-R
2023-09-26 18:38:40 +02:00
committed by GitHub
parent 5fa7cd230a
commit 9566276047
13 changed files with 261 additions and 71 deletions

View File

@ -105,7 +105,7 @@ def test_create_tabs(full_db: Session) -> None:
selected_finance_df = finance_df.loc[
finance_df["company_id"] == selected_company_id
]
ui_elements.create_tabs(selected_finance_df)
ui_elements.create_tabs(selected_company_id, selected_finance_df)
def test_kennzahlen_layout(full_db: Session) -> None: