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,
You'll have to do this in the view - use the builtin zip function to make a list of tuples, then iterate over it in the template.
Template logic is purposely simple, anything even slightly complex should be done in the view.