From c21a907cacbbfa8ce8a135362067086063a805f6 Mon Sep 17 00:00:00 2001 From: Thomas Pointhuber Date: Mon, 22 Sep 2014 22:42:29 +0200 Subject: initial commit of the new template 'oscar' * base.html mostly implemented * stats.html implemented * about.html implemented * most of preferences.html implemented * using bootstrap.js --- searx/templates/oscar/preferences.html | 120 +++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 searx/templates/oscar/preferences.html (limited to 'searx/templates/oscar/preferences.html') diff --git a/searx/templates/oscar/preferences.html b/searx/templates/oscar/preferences.html new file mode 100644 index 000000000..fa0799b28 --- /dev/null +++ b/searx/templates/oscar/preferences.html @@ -0,0 +1,120 @@ +{% extends "oscar/base.html" %} +{% block content %} +
+ +

{{ _('Preferences') }}

+
+ + + + + +
+
+
+ {{ _('Default categories') }} +

+ {% include 'default/categories.html' %} +

+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
+ +
+ + +
+ {{ _('Find stuff as you type') }} +
+
+ +
+ +
+ {{ _('Change how forms are submited, learn more about request methods') }} +
+
+ +
+ +
+ {{ _('Change searx layout') }} +
+
+
+
+
+
+ {% for (categ,search_engines) in categs %} + {{ _(categ) }} +
+ {% for search_engine in search_engines %} + {% if not search_engine.private %} +
+
{{ search_engine.name }} ({{ shortcuts[search_engine.name] }})
+
+
+ + + +
+
+
+ {% endif %} + {% endfor %} +
+ {% endfor %} +
+
+
+ +

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

+ + +
{{ _('back') }}
+
+
+{% endblock %} -- cgit v1.2.3