17 lines
486 B
Python
17 lines
486 B
Python
# 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
|
||
]
|
||
)
|