1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-17 18:50:16 +02:00
searxng/searx/templates/legacy/categories.html

11 lines
598 B
HTML
Raw Normal View History

2014-01-05 20:27:13 +01:00
<div id="categories">
<div id="categories_container">
{% for category in categories %}
<div class="checkbox_container">
2014-11-18 19:44:33 +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(' ', '_') }}" class="tooltips">{{ _(category) }}</label>
</div>
{% endfor %}
{% if display_tooltip %}<div class="hidden">{{ _('Click on the magnifier to perform search') }}</div>{% endif %}
</div>
2014-01-05 20:27:13 +01:00
</div>