{% for col in table[0] %}
{{col}}
{% endfor %}
{% for col in table[1:] %}
{% for cell in col %}
{{cell}}
{% endfor %}
{% endfor %}