blob: ab83d77ec7ed03ded5b45c6656dc7cc340544f0e (
plain)
1
2
3
4
5
6
7
8
9
10
|
<form method="post" action="">
<input type="text" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
<input type="submit" value="search" />
<p>
{% for category in categories %}
{{ category }}: <input type="checkbox" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} />
{% endfor %}
</p>
<p>remember categories:<input type="checkbox" name="save" checked="checked" /></p>
</form>
|