I have two list objects of the same length with complementary data i want to render is there a way to render both at the same time ie.
{% for i,j in table,
Rather than using a dictionary (which does not guarantee any kind of sorting), use the python zip function on the two lists and pass it to the template.
zip