initial commit

This commit is contained in:
2025-06-03 14:01:08 +00:00
commit 6ab9ceed4b
50 changed files with 2253 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# dashboard/pages/appointments.py
from dash import html
import dash
dash.register_page(__name__, path="/appointments", name="Termine")
layout = html.Div(
className="appointments-page",
children=[
html.H3("Terminverwaltung"),
html.Div(id="calendar-container"),
html.Button("Neuen Termin anlegen", id="btn-add-appointment"),
html.Div(id="appointments-feedback"),
# Hier später das Modal oder das FullCalendarElement einfügen
]
)