We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2880081 commit f401c7eCopy full SHA for f401c7e
primer-on-jinja-templating-update/app.py
@@ -5,7 +5,7 @@
5
6
@app.route("/")
7
def home():
8
- return render_template("base.html", title="home")
+ return render_template("base.html", title="Jinja and Flask")
9
10
11
max_score = 100
@@ -22,7 +22,7 @@ def home():
22
@app.route("/results")
23
def results():
24
context = {
25
- "title": "results",
+ "title": "Results",
26
"max_score": max_score,
27
"test_name": test_name,
28
"students": students,
0 commit comments