This commit is contained in:
2026-02-19 15:08:36 +00:00
parent 7a74ce6227
commit e2e0fe6175

View File

@@ -2,7 +2,7 @@ from flask import Flask, render_template, request, redirect
app = Flask(__name__) app = Flask(__name__)
items = ['dummy1', 'dummy2', 'a', 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'] items = []
@app.route("/") @app.route("/")
def mainpage(): def mainpage():
return render_template('index.html', title='BG Shutdown', items=items) return render_template('index.html', title='BG Shutdown', items=items)