Reputation: 169
I wrote these for loop, but I got the Error : Django Invalid Block Tag: 'endfor'
{ % for post in post_list %}
<div>
{{ post.title }}
{{ post.created_at }}
{{ post.photo }}
{{ post.content }}
</div>
{% endfor %}
Upvotes: 5
Views: 4119
Reputation: 21744
You're getting that error because there is a space between {
and %
where the for
tag begins.
Change this - { %
to look like this - {%
, i.e. remove the space between {
and %
:
{% for post in post_list %}
...
{% endfor %}
Upvotes: 5