{% from 'simple/macros.html' import tabs_open, tabs_close, tab_header, tab_footer, checkbox_onoff, checkbox %} {% extends "simple/base.html" %} {%- macro plugin_preferences(section) -%} {%- for plugin in plugins -%} {%- if plugin.preference_section == section -%}
{{- '' -}} {{ _(plugin.name) }}{{- '' -}}
{{- checkbox_onoff('plugin_' + plugin.id, plugin.id not in allowed_plugins) -}}
{{- '' -}}
{{- _(plugin.description) -}}
{{- '' -}}
{%- endif -%} {%- endfor -%} {%- endmacro -%} {% block head %} {% endblock %} {% block content %}

searx

{{ _('Preferences') }}

{{ tabs_open() }} {{ tab_header('maintab', 'general', _('General')) }} {% if 'categories' not in locked_preferences %}
{{ _('Default categories') }} {% set display_tooltip = false %} {% include 'simple/categories.html' %}
{% endif %} {% if 'language' not in locked_preferences %}
{{ _('Search language') }}

{{- '' -}} {{- '' -}}

{{ _('What language do you prefer for search?') }}
{% endif %} {% if 'autocomplete' not in locked_preferences %}
{{ _('Autocomplete') }}

{{ _('Find stuff as you type') }}
{% endif %} {% if 'safesearch' not in locked_preferences %}
{{ _('SafeSearch') }}

{{ _('Filter content') }}

{% endif %} {{ plugin_preferences('general') }} {% if 'doi_resolver' not in locked_preferences %}
{{ _('Open Access DOI resolver') }}

{% endif %} {{ tab_footer() }} {{ tab_header('maintab', 'engines', _('Engines')) }}

{{ _('Currently used search engines') }}

{{ tabs_open() }} {% for categ in all_categories %} {{ tab_header('enginetab', 'category' + categ, _(categ)) }}
{% for search_engine in engines_by_category[categ] %} {% if not search_engine.private %} {% set engine_id = 'engine_' + search_engine.name|replace(' ', '_') + '__' + categ|replace(' ', '_') %} {% endif %} {% endfor %}
{{ _("Allow") }} {{ _("Engine name") }} {{ _("Shortcut") }} {{ _("Supports selected language") }} {{ _("SafeSearch") }} {{ _("Time range") }} {{ _("Avg. time") }} {{ _("Max time") }}
{{ checkbox_onoff(engine_id, (search_engine.name, categ) in disabled_engines) }} {{ search_engine.name }} {{ shortcuts[search_engine.name] }} {{ checkbox(engine_id + '_supported_languages', current_language == 'all' or current_language in search_engine.supported_languages or current_language.split('-')[0] in search_engine.supported_languages, true, true) }} {{ checkbox(engine_id + '_safesearch', search_engine.safesearch==True, true, true) }} {{ checkbox(engine_id + '_time_range_support', search_engine.time_range_support==True, true, true) }} {{ 'N/A' if stats[search_engine.name].time==None else stats[search_engine.name].time }} {{ search_engine.timeout }}
{{ tab_footer() }} {% endfor %} {{ tabs_close() }} {{ tab_footer() }} {{ tab_header('maintab', 'ui', _('User interface')) }} {% if 'locale' not in locked_preferences %}
{{ _('Interface language') }}

{{ _('Change the language of the layout') }}
{% endif %} {% if 'theme' not in locked_preferences %}
{{ _('Themes') }}

{{ _('Change searx layout') }}
{% endif %} {% if 'results_on_new_tab' not in locked_preferences %}
{{ _('Results on new tabs') }}

{{_('Open result links on new browser tabs') }}
{% endif %} {{ plugin_preferences('ui') }} {{ tab_footer() }} {{ tab_header('maintab', 'cookies', _('Cookies')) }}

{{ _('This is the list of cookies and their values searx is storing on your computer.') }}
{{ _('With that list, you can assess searx transparency.') }}

{% if cookies %} {% for cookie in cookies %} {% endfor %}
{{ _('Cookie name') }} {{ _('Value') }}
{{ cookie }} {{ cookies[cookie] }}
{% else %} {% include 'oscar/messages/no_cookies.html' %} {% endif %}

{{ _('Search URL of the currently saved preferences') }} :

{{ url_for('index', _external=True) }}?preferences={{ preferences_url_params|e }}{% raw %}&q=%s{% endraw %}

{{ _('Note: specifying custom settings in the search URL can reduce privacy by leaking data to the clicked result sites.') }}

{{ tab_footer() }} {{ tab_header('maintab', 'privacy', _('Privacy')) }} {% if 'method' not in locked_preferences %}
{{ _('Method') }}

{{ _('Search language') }}
{% endif %} {% if 'image_proxy' not in locked_preferences %}
{{ _('Image proxy') }}

{{ _('Proxying image results through searx') }}
{% endif %} {{ plugin_preferences('privacy') }} {{ tab_footer() }} {{ tabs_close() }}

{{ _('These settings are stored in your cookies, this allows us not to store this data about you.') }}
{{ _("These cookies serve your sole convenience, we don't use these cookies to track you.") }}

{{ _('Reset defaults') }}
{{ _('back') }}
{% endblock %}