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.

Gregg Mojica
11,506 PointsPython Loop Through Nests
Hey Guys, What am I doing wrong with this one?
from flask import Flask, render_template
from teachers import TEACHERS
app = Flask(__name__)
@app.route('/')
def index():
return render_template("teachers.html", teachers=TEACHERS)
<ul class="teachers">
{% for teacher in teachers: %}
<li><h2>{{ teacher['name'] }}</h2></li>
{% for course in teacher['courses']: %}
<li> {{ course }} </li>
{% endfor %}
</li>
{% endfor %}
</ul>
2 Answers

Vittorio Somaschini
33,371 PointsHey Gregg.
Just surround the secondo for block (lines about 5 to 8) with the ul tag and you should be fine.
Any problems let me know.
Vittorio

Vittorio Somaschini
33,371 PointsHell Gregg.
At first sight I see these problems with the code:
1) you have an extra list item closing tag (</li>)
2) The second part of the code challenge asks for a new ul tag inside the li tag we have previously created, with a class of "courses", which I can't see in your code.

Gregg Mojica
11,506 PointsHUh, bu I passed the first challenge....Were do I put that course class? I removed the extra closing tag. <ul class="teachers">
{% for teacher in teachers: %}
<li class="courses"><h2>{{ teacher['name'] }}</h2>
{% for course in teacher['courses']: %}
<li> {{ course }} </li>
{% endfor %}
</li>
{% endfor %}
</ul>