Dynamically build the page. Automatically update by refreshing page

This commit is contained in:
2025-08-31 12:12:49 +02:00
parent fd0cb02615
commit 071c15f40d
2 changed files with 8 additions and 25 deletions

View File

@@ -11,7 +11,7 @@ app = Flask(__name__)
@app.route("/")
def homepage():
return render_template("home.html")
return render_template("home.html", services=services)
@app.route("/status")