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...
<table class="table table-striped"> <tr> {% for column in Columns %} <td>{{ column }}</td> {% endfor %} </tr> {% for row in rows %} <tr> {% for column in Columns %} <td>{{ row[column] }}</td> {% endfor %} </tr> {% endfor %} </table>