diff --git a/main.py b/main.py index a5e1220..66318f3 100644 --- a/main.py +++ b/main.py @@ -1997,6 +1997,7 @@ async def remove_from_plan(plan_id: int, db: Session = Depends(get_db)): @app.get("/detailed", response_class=HTMLResponse) async def detailed(request: Request, person: str = "Sarah", plan_date: str = None, template_id: int = None, db: Session = Depends(get_db)): from datetime import datetime, date + logging.info(f"DEBUG: Detailed page requested with url: {request.url.path}, query_params: {request.query_params}") logging.info(f"DEBUG: Detailed page requested with person={person}, plan_date={plan_date}, template_id={template_id}") # Get all templates for the dropdown diff --git a/templates/detailed.html b/templates/detailed.html index d962d4f..c8c8372 100644 --- a/templates/detailed.html +++ b/templates/detailed.html @@ -5,9 +5,9 @@