unit consistency changes

This commit is contained in:
2025-10-01 14:36:42 -07:00
parent 7ffc57a7a8
commit bb30f9eb2b
18 changed files with 726 additions and 120 deletions

View File

@@ -276,4 +276,8 @@ async def root(request: Request):
@app.get("/test")
async def test_route():
logging.info("DEBUG: Test route called")
# Add a test route to check template inheritance
@app.get("/test_template", response_class=HTMLResponse)
async def test_template(request: Request):
return templates.TemplateResponse("test_template.html", {"request": request, "person": "Sarah"})
return {"status": "success", "message": "Test route is working"}