summaryrefslogtreecommitdiff
path: root/examples/rwbench/mako/helpers.html
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2020-01-10 12:58:38 -0800
committerDavid Lord <davidism@gmail.com>2020-01-10 12:58:38 -0800
commite492255f270add52d051ef4f8e87899f40e57687 (patch)
tree5c32f9e526b2efae6d901bc4dd77655dbf8ab3b5 /examples/rwbench/mako/helpers.html
parent143667d95d73730415bb1281d1cd5e439b366fec (diff)
downloadjinja2-e492255f270add52d051ef4f8e87899f40e57687.tar.gz
remove old scripts and examples
Diffstat (limited to 'examples/rwbench/mako/helpers.html')
-rw-r--r--examples/rwbench/mako/helpers.html11
1 files changed, 0 insertions, 11 deletions
diff --git a/examples/rwbench/mako/helpers.html b/examples/rwbench/mako/helpers.html
deleted file mode 100644
index a0290eb..0000000
--- a/examples/rwbench/mako/helpers.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<%def name="input_field(name='', value='', type='text')">
- <input type="${type}" value="${value|h}" name="${name}">
-</%def>
-
-<%def name="textarea(name, value='', rows=10, cols=40)">
- <textarea name="${name}" rows="${rows}" cols="${cols}">${value|h}</textarea>
-</%def>
-
-<%def name="form(action='', method='post')">
- <form action="${action|h}" method="${method}">${caller.body()}</form>
-</%def>