summaryrefslogtreecommitdiff
path: root/searx/templates/simple/categories.html
diff options
context:
space:
mode:
authorPaul Braeuning <paul@paulgo.io>2021-11-23 11:04:34 +0100
committerGitHub <noreply@github.com>2021-11-23 11:04:34 +0100
commita87f1eb9ec318e794c03a2bcb06b084cd69dc1d0 (patch)
tree5908508cb7f95db6afd5d0eb790675fe7799da07 /searx/templates/simple/categories.html
parentef3f084c498f62d608618c453d74c03aa1019094 (diff)
parentb0aebf7069236ba53078b7d5adf6c678df56693b (diff)
Merge pull request #510 from mrpaulblack/result-article-improvments
[simple theme] rework select and impove url
Diffstat (limited to 'searx/templates/simple/categories.html')
-rw-r--r--searx/templates/simple/categories.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/simple/categories.html b/searx/templates/simple/categories.html
index 29616f127..ae8b2ec09 100644
--- a/searx/templates/simple/categories.html
+++ b/searx/templates/simple/categories.html
@@ -13,6 +13,7 @@
} -%}
<div id="categories" class="search_categories">{{- '' -}}
<div id="categories_container">
+ {%- if display_tooltip %}<div class="help">{{ _('Click on the magnifier to perform search') }}</div>{% endif -%}
{%- for category in categories -%}
<div class="category"><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">
@@ -21,6 +22,5 @@
</label>
</div>
{%- endfor -%}
- {%- if display_tooltip %}<div class="help">{{ _('Click on the magnifier to perform search') }}</div>{% endif -%}
</div>{{- '' -}}
</div>