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,
Use python's zip function and zip the 2 lists together.
In your view:
zip(table, list)
In your template, you can iterate this like a simple list, and use the .0 and .1 properties to access the data from table and list, respectively.