[enh][mod] template refactor

This commit is contained in:
asciimoo 2013-10-17 01:53:52 +02:00
parent 3373b2c298
commit 0531706287
3 changed files with 11 additions and 13 deletions

View file

@ -0,0 +1,9 @@
<form method="post" action="">
<input type="text" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
<input type="submit" value="search" />
<p>
{% for engine in engines %}
{{ engine }}: <input type="checkbox" name="engine_{{ engine }}" checked="checked"/>
{% endfor %}
</p>
</form>