diff options
Diffstat (limited to 'testing/templates/big-table.html')
-rw-r--r-- | testing/templates/big-table.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testing/templates/big-table.html b/testing/templates/big-table.html new file mode 100644 index 0000000..2fbfce4 --- /dev/null +++ b/testing/templates/big-table.html @@ -0,0 +1,5 @@ +<table> +{% for row in table %} +<tr>{% for col in row %}<td>{{ col|escape }}</td>{% endfor %}</tr> +{% endfor %} +</table> |