{% for column in table_data.header_columns %}
{{ column }}
{% endfor %}
{% for row in table_data.body_rows %}
{% for column in row %} {% if column.sort == True %}
{{ column.value }}
{% else %}
{{ column.value }}
{% endif %} {% endfor %}
{% endfor %}