From 8b3ca1112c77ab7d131c075530f0dc02c6029e7d Mon Sep 17 00:00:00 2001 From: asciimoo Date: Fri, 17 Jan 2014 16:23:23 +0100 Subject: [enh] /engines page added --- searx/templates/engines.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 searx/templates/engines.html (limited to 'searx/templates/engines.html') diff --git a/searx/templates/engines.html b/searx/templates/engines.html new file mode 100644 index 000000000..1f52dc09f --- /dev/null +++ b/searx/templates/engines.html @@ -0,0 +1,26 @@ +{% extends 'base.html' %} +{% block content %} +
+

Currently used search engines

+ + + + + + + {% for (categ,search_engines) in categs %} + {% for search_engine in search_engines %} + + {% if not search_engine.private %} + + + + + {% endif %} + {% endfor %} + {% endfor %} +
Engine nameCategory
{{ search_engine.name }}{{ categ }}
+

Please add more engines to this list, pull requests are welcome!

+

back

+
+{% endblock %} -- cgit v1.2.3