This commit is contained in:
2026-02-20 14:36:54 +00:00
parent ac2b23c459
commit 121cc91ad1
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -34,6 +34,7 @@ def mainpage():
cursor.execute("SELECT name, time FROM items ORDER BY name")
items = cursor.fetchall()
conn.close()
print(items)
return render_template('index.html', title='BS Shutdown', items=items)
@app.route('/submit', methods =['POST'])