Skip to content

Commit f401c7e

Browse files
committed
Nicer titles
1 parent 2880081 commit f401c7e

File tree

1 file changed

+2
-2
lines changed
  • primer-on-jinja-templating-update

1 file changed

+2
-2
lines changed

primer-on-jinja-templating-update/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
@app.route("/")
77
def home():
8-
return render_template("base.html", title="home")
8+
return render_template("base.html", title="Jinja and Flask")
99

1010

1111
max_score = 100
@@ -22,7 +22,7 @@ def home():
2222
@app.route("/results")
2323
def results():
2424
context = {
25-
"title": "results",
25+
"title": "Results",
2626
"max_score": max_score,
2727
"test_name": test_name,
2828
"students": students,

0 commit comments

Comments
 (0)