{% extends "courgette/base.html" %} {% block head %} {% endblock %} {% block content %}

{{ _('Preferences') }}

{% if 'categories' not in locked_preferences %}
{{ _('Default categories') }} {% include 'courgette/categories.html' %}
{% endif %} {% if 'language' not in locked_preferences %}
{{ _('Search language') }}

{% endif %} {% if 'locale' not in locked_preferences %}
{{ _('Interface language') }}

{% endif %} {% if 'autocomplete' not in locked_preferences %}
{{ _('Autocomplete') }}

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

{% endif %} {% if 'method' not in locked_preferences %}
{{ _('Method') }}

{% endif %} {% if 'safesearch' not in locked_preferences %}
{{ _('SafeSearch') }}

{% endif %} {% if 'theme' not in locked_preferences %}
{{ _('Themes') }}

{{ _('Color') }}

{% endif %}
{{ _('Currently used search engines') }} {% for categ in all_categories %} {% for search_engine in engines_by_category[categ] %} {% if not search_engine.private %} {% endif %} {% endfor %} {% endfor %}
{{ _('Engine name') }} {{ _('Shortcut') }} {{ _('Category') }} {{ _('Allow') }} / {{ _('Block') }}
{{ search_engine.name }} {{ shortcuts[search_engine.name] }} {{ _(categ) }}

{{ _('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.") }}

{% endblock %}