mylist = zip(list1, list2) context = { 'mylist': mylist, } return render(request, 'template.html', context)
{% for item1, item2 in mylist %}