In django the syntax for using a for loop over a list or array is:
{% for each in list %} <td>{{ each }}</td> {% endfor %} if i use nested loop then the data span over multiple columns.
How to iterate over two or more lists at same time. I have 5 lists i want to iterate over.
e.g in python i can use something like:
for x,y in zip(ls1, ls2): #Do your work