askama/testing/templates/big-table.html
2018-06-28 17:01:12 +02:00

6 lines
120 B
HTML

<table>
{% for row in table %}
<tr>{% for col in row %}<td>{{ col|escape }}</td>{% endfor %}</tr>
{% endfor %}
</table>