diff --git a/searx/templates/oscar/preferences.html b/searx/templates/oscar/preferences.html index 56e67e815..693167807 100644 --- a/searx/templates/oscar/preferences.html +++ b/searx/templates/oscar/preferences.html @@ -17,6 +17,7 @@
  • {{ _('General') }}
  • {{ _('Engines') }}
  • {{ _('Plugins') }}
  • +
  • {{ _('Cookies') }}
  • @@ -159,22 +160,47 @@

    {{ _('Plugins') }}

    -
    - {% for plugin in plugins %} -
    -
    -

    {{ plugin.name }}

    -
    -
    -
    {{ plugin.description }}
    -
    - {{ checkbox_toggle('plugin_' + plugin.id, plugin.id not in allowed_plugins) }} +
    + {% for plugin in plugins %} +
    +
    +

    {{ plugin.name }}

    +
    +
    +
    {{ plugin.description }}
    +
    + {{ checkbox_toggle('plugin_' + plugin.id, plugin.id not in allowed_plugins) }} +
    + {% endfor %}
    +
    + + +
    + +

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

    +
    +
    +
    +
    +
    +
    + + {% for cookie in cookies %} +
    +
    {{ cookie }}
    +
    {{ cookies[cookie] }}
    +
    {% endfor %} +
    -

    {{ _('These settings are stored in your cookies, this allows us not to store this data about you.') }}