1👍
You can iterate over list in a template like this:
{% for name in names %}
{{ name }}
{% endfor %}
Read more about the for template tag.
Source:stackexchange.com
1👍
You can iterate over list in a template like this:
{% for name in names %}
{{ name }}
{% endfor %}
Read more about the for template tag.