1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/searx_ynh.git synced 2024-09-03 20:16:30 +02:00
searx_ynh/sources/searx/templates/courgette/categories.html

9 lines
450 B
HTML
Raw Normal View History

2014-12-01 12:26:38 +01:00
<div id="categories">
2015-02-09 13:30:16 +01:00
<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 %}
2014-12-01 12:26:38 +01:00
</div>
2015-02-09 13:30:16 +01:00
</div>