summaryrefslogtreecommitdiff
path: root/searx/templates/engines.html
diff options
context:
space:
mode:
authorasciimoo <asciimoo@gmail.com>2014-01-17 16:23:23 +0100
committerasciimoo <asciimoo@gmail.com>2014-01-17 16:23:23 +0100
commit8b3ca1112c77ab7d131c075530f0dc02c6029e7d (patch)
tree2bb413898a5105893aaadb9f2c9730a3c31b2d02 /searx/templates/engines.html
parentd6c8987575d94b56b6b877e552de99fa0c62ba98 (diff)
[enh] /engines page added
Diffstat (limited to 'searx/templates/engines.html')
-rw-r--r--searx/templates/engines.html26
1 files changed, 26 insertions, 0 deletions
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 %}
+<div class="row">
+<h2>Currently used search engines</h2>
+
+ <table style="width: 80%;">
+ <tr>
+ <th>Engine name</th>
+ <th>Category</th>
+ </tr>
+ {% for (categ,search_engines) in categs %}
+ {% for search_engine in search_engines %}
+
+ {% if not search_engine.private %}
+ <tr>
+ <td>{{ search_engine.name }}</td>
+ <td>{{ categ }}</td>
+ </tr>
+ {% endif %}
+ {% endfor %}
+ {% endfor %}
+ </table>
+<p>Please add more engines to this list, pull requests are welcome!</p>
+<p class="right"><a href="/">back</a></p>
+</div>
+{% endblock %}