searxng/searx/templates/search.html
2013-10-17 21:06:28 +02:00

10 lines
416 B
HTML

<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>
</form>