forked from Icycoide/searxng
add multi theming support
This commit is contained in:
parent
3386e21cdf
commit
08eaffe245
41 changed files with 104 additions and 29 deletions
7
searx/templates/default/categories.html
Normal file
7
searx/templates/default/categories.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
<div id="categories">
|
||||
{% 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>
|
Loading…
Add table
Add a link
Reference in a new issue