1
0
mirror of https://github.com/searxng/searxng.git synced 2024-08-24 23:13:33 +02:00
searxng/searx/templates/categories.html

6 lines
426 B
HTML
Raw Normal View History

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