1👍
You can use zip().
In your views, you can write this.
l = zip(liste, liste2)
and in your template, you can write {%for i, j in l%}
Source:stackexchange.com
1👍
You can use zip().
In your views, you can write this.
l = zip(liste, liste2)
and in your template, you can write {%for i, j in l%}