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 trial

Python Flask Basics Character Builder Loop Nested Items

Sylwester Guzek
Sylwester Guzek
16,088 Points

Dear Treehouse team, can you provide teachers file that contains TEACHERS data ? You refer to it in the challange.

Dear Treehouse team, can you provide teachers file that contains TEACHERS data ? You refer to it in the challange in Flask course (stage 3). Thank you

flask_app.py
from flask import Flask, render_template

from teachers import TEACHERS

app = Flask(__name__)


@app.route('/')
def index():
    return render_template("teachers.html", teachers=TEACHERS)
templates/teachers.html
<ul class="teachers">
{% for teacher in teachers %}
  <li>  
    <h2> teacher['name']</h2>
  </li>
{% endfor %}
</ul>
Jay Padzensky
Jay Padzensky
4,731 Points

Hey Sylwester,

Thanks for this. Are you able to email Support with your question? help@teamtreehouse.com

If you can also include a link to the video and a timestamp, or wherever it may be referenced, we'll forward it to our teachers to investigate. Thank you!

1 Answer

Ben Jakuben
STAFF
Ben Jakuben
Treehouse Teacher

Hey Sylwester Guzek , looks like you are just missing some curly braces from the .html file:

{{ teacher['name'] }}

With that in place you should hopefully be able to complete the challenge. You shouldn't need to see the teachers list to complete it at this point. The instructions tell you exactly what you need from it.

That said, we'll take your feedback into account the next time someone makes improvements to this challenge!