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

Python Loop Through Nests

Hey Guys, What am I doing wrong with this one?

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>

    {% for course in teacher['courses']: %}
  <li> {{ course }} </li>

  {% endfor %}

  </li>

  {% endfor %}

</ul>

2 Answers

Vittorio Somaschini
Vittorio Somaschini
33,371 Points

Hey 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
Vittorio Somaschini
33,371 Points

Hell 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.

HUh, 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>