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

overriding a block problem

i just can't understand what the question is telling me to do, any suggestions ???

articles/templates/articles/article_list.html
{% extends 'base.html'%}
<content>
{% for %}
  {% endfor %}
</content>

1 Answer

Chase Marchione
Chase Marchione
155,055 Points

Hi Ammar,

To do this block content task, we want to use a Django template tag (using the curly brace and percentage sign syntax) rather than an XML tag (we're using Django to identify/denote the block and its content):

{% extends "base.html" %}

{% block content %}
{% for article in articles %}
{{ article.headline }}
{% endfor %}
{% endblock %}

Hope this helps!