Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialDaniel Smith
10,172 PointsIm not sure why this is incorrect
I'm supposed to put the name variable in the h1 tag form. I used the double curly braces like the previous video showed but it won't work
from flask import Flask
from flask import render_template
app = Flask(__name__)
@app.route('/hello/<name>')
def hello(name="Treehouse"):
name = name
return render_template('hello.html')
<!doctype html>
<html>
<head><title>Hello!</title></head>
<body>
<h1>Howdy {{name}}!</h1>
</body>
</html>
1 Answer
Steven Parker
231,198 PointsThe HTML change is OK. But the rest of the instructions said to "Pass the name argument to the template."
Putting "name=name
" on a line by itself doesn't do anything, but putting it as the 2nd argument to render_template
would be a way to pass the name to the template.