From 797567d4411e0a32912fc40fdcf35ee4abee9d92 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 30 Mar 2026 14:34:05 +0000 Subject: [PATCH 1/2] Initial plan From 975f14c3f7d9987f8c21ab27f29f5eca5ae67ba8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 30 Mar 2026 14:40:56 +0000 Subject: [PATCH 2/2] fix: resolve 500 error on /dashboard by using existing index.html template Agent-Logs-Url: https://github.com/christianlouis/dmarq/sessions/e0466584-8008-4217-bb87-f6d6b9d77387 Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> --- backend/app/main.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/backend/app/main.py b/backend/app/main.py index 5482690..05c293b 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -372,9 +372,7 @@ async def index(request: Request): # Individual page routes @app.get("/dashboard", response_class=HTMLResponse) async def dashboard(request: Request): - return templates.TemplateResponse( - request, "dashboard.html", {"app_name": settings.PROJECT_NAME} - ) + return templates.TemplateResponse(request, "index.html") @app.get("/login", response_class=HTMLResponse)