Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Anders Axelsen
3,470 PointsIs there a special way to rendering of add.html?
I only have access to the route, /
, and the def index(name="Anders"):
function.
The route, /add/
, only displays Not Found in browser.
#simple_app.py
from flask import Flask
from flask import render_template
app = Flask(__name__)
@app.route('/')
@app.route('/<name>')
def index(name="Anders"):
return "Hello {}".format(name)
@app.route('/add/<int:num1>/<int:num2>')
@app.route('/add/<float:num1>/<float:num2>')
@app.route('/add/<int:num1>/<float:num2>')
@app.route('/add/<float:num1>/<int:num2>')
def add(num1, num2):
return render_template("add.html")
app.run(debug=True, port=8000, host='0.0.0.0')
#add.html
<!doctype html>
<html>
<head>
<title>Adding!</title>
</head>
<body>
<h1>Num1 + num2 = Sum-thing!</h1>
</body>
</html>
1 Answer

Chris Freeman
Treehouse Moderator 67,995 PointsCorrect. Because there isn't an explicit @app.route('/add/')
, going to that URL will not match. By adding this route, the function add()
will be run. But this will bring up another error. Do you see it?
If the function add()
is reached through the route '/add/' then the parameters num1
and num2
will not be defined. One fix would be to add default parameter values for num1 and num2 in the add()
function signature definition.
Post back if you need more help. Good luck!!!
Anders Axelsen
3,470 PointsAnders Axelsen
3,470 PointsThanks Chris.
My
add
code with concepts from your revision:I see this error,
jinja2.exceptions.TemplateNotFound
, running the code above.The error is unexpected for me, since my code is, seemingly, identical to the one of Kenneth.
Cheers!
Anders Axelsen
3,470 PointsAnders Axelsen
3,470 PointsSolved it by.... watching the entire video.. =) ~ Perks of gradual procedure.