sailfish/benches/templates/big-table.html

6 lines
120 B
HTML
Raw Normal View History

2020-06-06 05:28:14 -04:00
<table>
{% for row in table %}
<tr>{% for col in row %}<td>{{ col|escape }}</td>{% endfor %}</tr>
{% endfor %}
</table>