I have a dictionary:
field = { u\'Birthday:\': [datetime.date(2012, 4, 6), datetime.date(2012, 4, 27)], u\'Education\': [u\'A1\', u\'A2\'], u\'Job
Simeon's answer worked for me, but I had to do something a little different int the template to get the rows and data looking right because of the nested list:
{% for row in field.rows %} {% for value in row %} {{value}} {% endfor %} {% endfor %}