2013-10-16 23:53:52 +00:00
|
|
|
<form method="post" action="">
|
2013-10-17 18:44:50 +00:00
|
|
|
<input type="text" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
|
2013-10-16 23:53:52 +00:00
|
|
|
<input type="submit" value="search" />
|
|
|
|
<p>
|
2013-10-17 19:06:28 +00:00
|
|
|
{% for category in categories %}
|
2013-10-19 20:13:40 +00:00
|
|
|
<input type="checkbox" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} />{{ category }}
|
2013-10-16 23:53:52 +00:00
|
|
|
{% endfor %}
|
|
|
|
</p>
|
2013-10-19 20:13:40 +00:00
|
|
|
<p><input type="checkbox" name="save" checked="checked" />remember categories</p>
|
2013-10-16 23:53:52 +00:00
|
|
|
</form>
|