diff options
| author | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-01-15 01:48:46 +0100 |
|---|---|---|
| committer | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-01-15 01:48:46 +0100 |
| commit | 389fc3b8b27e52a0959c4008ad303337f1c3c827 (patch) | |
| tree | a2e20ff4a218f3543356759f84a99b512ba77091 /searx/templates/default/categories.html | |
| parent | 08df681b48aa32abfcf7420be30c669684dbc57e (diff) | |
Few fixes
- Whitespaces
- Change a few <p> in <span>
- Add RSS to allow browser detection
- A few UIUX changes
- Add a few more allowed translations
Diffstat (limited to 'searx/templates/default/categories.html')
| -rw-r--r-- | searx/templates/default/categories.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/templates/default/categories.html b/searx/templates/default/categories.html index 017898ea7..1c466781b 100644 --- a/searx/templates/default/categories.html +++ b/searx/templates/default/categories.html @@ -1,10 +1,10 @@ <div id="categories"> <div id="categories_container"> -{% for category in 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(' ', '_') }}" class="tooltips">{{ _(category) }}</label> </div> -{% endfor %} - <div class="hidden">{{ _('Click on the magnifier to perform search') }}</div> + {% endfor %} + {% if display_tooltip %}<div class="hidden">{{ _('Click on the magnifier to perform search') }}</div>{% endif %} </div> </div> |