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 trialElvin Mazwimairi
15,541 PointsI ain't sure where i got it wrong in m,y code
This question keeps on returning that it didn't get the right output. I tagged my code to this question below, but i aint sure where i got it wrong
{% extends "base.html" %}
{% block content %}
{% for article in articles %}
{{articles.headline}}
{% endfor %}
{% endblock %}
1 Answer
Oszkár Fehér
Treehouse Project ReviewerHi Elvin Mazwimairi. Your code could pass the quiz if you don't change the provided code, this one
{% for article in articles %}
{{ article.headline }}
{% endfor %}
with this one
{% for article in articles %}
{{articles.headline}} ---> an extra "s" at the end of "articles", the missing spaces doesn't change nothing
{% endfor %}
I hope this answer your question. Happy coding.
Elvin Mazwimairi
15,541 PointsElvin Mazwimairi
15,541 PointsHey , thanks; I had not seen that part