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 Django Basics Django Templates Override a block

I 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

articles/templates/articles/article_list.html
{% extends "base.html" %}
{% block content %}
{% for article in articles %}
{{articles.headline}}
{% endfor %}
{% endblock %}

1 Answer

Oszkár Fehér
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Oszkár Fehér
Treehouse Project Reviewer

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

Hey , thanks; I had not seen that part