mirror of
https://github.com/searxng/searxng.git
synced 2024-11-13 13:41:03 +00:00
a71b326d9e
- more smartphone friendly - more text browser friendly - next button always on the right - in case of small screen supporting touch event, categories are displayed on one line with a scroll
9 lines
444 B
HTML
9 lines
444 B
HTML
<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(' ', '_') }}">{{ _(category) }}</label>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|