From 09853e7238bd1b0a2f2715d69952fa55f38af581 Mon Sep 17 00:00:00 2001 From: Esteban Rodriguez Date: Tue, 10 Dec 2024 10:40:57 -0800 Subject: [PATCH] added comments --- app.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app.py b/app.py index f900056..6425828 100644 --- a/app.py +++ b/app.py @@ -6,6 +6,13 @@ @app.route("/") def index(): + """ + Renders the homepage/dashboard. + + This function handles requests to the root URL ("/") + and returns the rendered "index.html" template. Containing the dashboard + to look at student breakfast dining metrics from a report generated in PowerBi. + """ return render_template("index.html")