blob: e9ec4bc3c36c6607f1e13620347af251bf6437e9 (
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 %}
<input type="checkbox" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} />{{ category }}
{% endfor %}
</p>
<p><input type="checkbox" name="save" checked="checked" />remember categories</p>
</form>
|