re ans-post
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simple_Not
2024-01-30 01:49:36 +10:00
parent 9838f7f024
commit a84da0a6f9
2 changed files with 15 additions and 1 deletions

4
app.py
View File

@@ -49,7 +49,9 @@ def healthz():
@app.route("/")
def homepage():
def homepage():
boards0 = db.collection('boards')
board_list = [ k['_key'] for k in boards0]
return render_template("main-page.html", host_id=docker_short_id, boards=board_list)