1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-13 00:36:39 +02:00
searxng/searx/templates/default/categories.html

8 lines
384 B
HTML
Raw Normal View History

2014-01-05 20:27:13 +01:00
<div id="categories">
2014-01-01 22:16:21 +01:00
{% for category in categories %}
<div class="checkbox_container">
2014-01-22 00:59:18 +01:00
<input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category|replace(' ', '_') }}">{{ _(category) }}</label>
2014-01-01 22:16:21 +01:00
</div>
{% endfor %}
2014-01-05 20:27:13 +01:00
</div>