initial commit
This commit is contained in:
16
dashboard/pages/appointments.py
Normal file
16
dashboard/pages/appointments.py
Normal 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 FullCalendar‐Element einfügen
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user