summaryrefslogtreecommitdiff
path: root/searx/templates/legacy/categories.html
blob: 1c466781bc5b0622ea719efa5905e62718adc7eb (plain)
1
2
3
4
5
6
7
8
9
10
<div id="categories">
    <div id="categories_container">
        {% 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="tooltips">{{ _(category) }}</label>
        </div>
        {% endfor %}
        {% if display_tooltip %}<div class="hidden">{{ _('Click on the magnifier to perform search') }}</div>{% endif %}
    </div>
</div>