I am new to python and django. I want to know how can I dispaly python list in django template. The list is a list of days in weeks e.g day_list = ['sunday','monday','tuesday']
2 Answers
Pass it to the template as a context and then simply iterate over it.
{% for day in day_list %}
{{ day }}
{% endfor %}
This is the documentation for the for tag. I recommend you go through the Django tutorial, and in part 3 they go over passing stuff to your templates, including iterating over sequences of stuff (like lists).
1 Comment
DeadDjangoDjoker
what if i just want to print monday??