aboutsummaryrefslogtreecommitdiffstats
path: root/testing/templates/big-table.html
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-06-28 17:01:12 +0200
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-06-28 17:01:12 +0200
commit970e3ecfbdf9e4e4c4faacdb87efa656e812398a (patch)
tree053c82e655441354004f4962d4d02e1674b7d8e4 /testing/templates/big-table.html
parentcb4fcbf379734345305065c2cce68046724a3408 (diff)
downloadaskama-970e3ecfbdf9e4e4c4faacdb87efa656e812398a.tar.gz
askama-970e3ecfbdf9e4e4c4faacdb87efa656e812398a.tar.bz2
askama-970e3ecfbdf9e4e4c4faacdb87efa656e812398a.zip
Add benchmarks to the Askama repo
Diffstat (limited to '')
-rw-r--r--testing/templates/big-table.html5
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>