diff options
author | David Lord <davidism@gmail.com> | 2020-01-10 12:58:38 -0800 |
---|---|---|
committer | David Lord <davidism@gmail.com> | 2020-01-10 12:58:38 -0800 |
commit | e492255f270add52d051ef4f8e87899f40e57687 (patch) | |
tree | 5c32f9e526b2efae6d901bc4dd77655dbf8ab3b5 /examples/rwbench/mako/helpers.html | |
parent | 143667d95d73730415bb1281d1cd5e439b366fec (diff) | |
download | jinja2-e492255f270add52d051ef4f8e87899f40e57687.tar.gz |
remove old scripts and examples
Diffstat (limited to 'examples/rwbench/mako/helpers.html')
-rw-r--r-- | examples/rwbench/mako/helpers.html | 11 |
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> |