Django Templates Display List
This is sort of a follow up to a previous question, but I'll repost all of my code here- I want to display the contents of a list in Django and I'm using this in my template - &l
Solution 1:
The problem is because mistyping. Some spaces are in the wrong place. use this
{% for author in authors %}
<li>{{ author|safe }}</li>
{% endfor %}
Post a Comment for "Django Templates Display List"