aboutsummaryrefslogtreecommitdiffstats
path: root/testing/templates/big-table.html
blob: 2fbfce4c5e0a3fe458e67613f6fd211641ad15c7 (plain) (blame)
1
2
3
4
5
<table>
{% for row in table %}
<tr>{% for col in row %}<td>{{ col|escape }}</td>{% endfor %}</tr>
{% endfor %}
</table>