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
+
+
+
+ Engine name |
+ Category |
+
+ {% for (categ,search_engines) in categs %}
+ {% for search_engine in search_engines %}
+
+ {% if not search_engine.private %}
+
+ {{ search_engine.name }} |
+ {{ categ }} |
+
+ {% endif %}
+ {% endfor %}
+ {% endfor %}
+
+
Please add more engines to this list, pull requests are welcome!
+
back
+
+{% endblock %}
diff --git a/searx/webapp.py b/searx/webapp.py
index 48448eb25..d6ec3a47b 100644
--- a/searx/webapp.py
+++ b/searx/webapp.py
@@ -174,8 +174,13 @@ def index():
@app.route('/about', methods=['GET'])
def about():
+ return render('about.html')
+
+
+@app.route('/engines', methods=['GET'])
+def list_engines():
global categories
- return render('about.html', categs=categories.items())
+ return render('engines.html', categs=categories.items())
@app.route('/preferences', methods=['GET', 'POST'])