summaryrefslogtreecommitdiff
path: root/searx/templates/legacy/categories.html
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2016-09-22 23:51:07 +0200
committerAdam Tauber <asciimoo@gmail.com>2016-09-22 23:51:07 +0200
commitbee7b497a300622f5ba2b619817f5c89c29ae871 (patch)
tree525c3d85020cedd88663a4bb4a0e18c54500044b /searx/templates/legacy/categories.html
parentaaf5d506e51197603922d7b9d259c0f4e498f62b (diff)
[mod] rename "default" theme to "legacy"
Diffstat (limited to 'searx/templates/legacy/categories.html')
-rw-r--r--searx/templates/legacy/categories.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/searx/templates/legacy/categories.html b/searx/templates/legacy/categories.html
new file mode 100644
index 000000000..1c466781b
--- /dev/null
+++ b/searx/templates/legacy/categories.html
@@ -0,0 +1,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>