I am making a nested for loop in Jinja / Python Flask.
If I hard code the values, then it works fine. Am I missing something in the Jinja template?
Figured it out...
{% for column in Columns %} {{ column }} {% endfor %} {% for row in rows %} {% for column in Columns %} {{ row[column] }} {% endfor %} {% endfor %}