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 24f2fb9 commit 4fc1bc5Copy full SHA for 4fc1bc5
hello_app/views.py
@@ -6,15 +6,15 @@
6
def home():
7
return render_template("home.html")
8
9
-@app.route("/about")
+@app.route("/about/")
10
def about():
11
return render_template("about.html")
12
13
-@app.route("/contact")
+@app.route("/contact/")
14
def contact():
15
return render_template("contact.html")
16
17
-@app.route("/hello")
+@app.route("/hello/")
18
@app.route("/hello/<name>")
19
def hello_there(name = None):
20
return render_template(
0 commit comments