Spaces:
Sleeping
Sleeping
hopefully fix templating now
Browse files
app.py
CHANGED
|
@@ -150,7 +150,7 @@ def ausgeliehen(idKind):
|
|
| 150 |
return result
|
| 151 |
|
| 152 |
@app.get("/", response_class=HTMLResponse)
|
| 153 |
-
async def read_root(
|
| 154 |
return templates.TemplateResponse("index.html", {"page_title": PAGE_TITLE})
|
| 155 |
|
| 156 |
# run the app
|
|
|
|
| 150 |
return result
|
| 151 |
|
| 152 |
@app.get("/", response_class=HTMLResponse)
|
| 153 |
+
async def read_root():
|
| 154 |
return templates.TemplateResponse("index.html", {"page_title": PAGE_TITLE})
|
| 155 |
|
| 156 |
# run the app
|