mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-29 14:03:59 +00:00
6 lines
120 B
HTML
6 lines
120 B
HTML
<table>
|
|
{% for row in table %}
|
|
<tr>{% for col in row %}<td>{{ col|escape }}</td>{% endfor %}</tr>
|
|
{% endfor %}
|
|
</table>
|