[Answer]-Send two lists in my template, for' tag received an invalid argument: for i in liste ; j in liste2

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%}

Leave a comment