summaryrefslogtreecommitdiff
path: root/searx/templates/engines.html
diff options
context:
space:
mode:
authorpw3t <romain@berthor.fr>2014-01-17 20:32:38 +0100
committerpw3t <romain@berthor.fr>2014-01-17 20:32:38 +0100
commita62b94e21c4c521430fb3b37f4241adb1faee63c (patch)
treeb53f9a2280c0467fd370f1292bd030b242c6a611 /searx/templates/engines.html
parentdd1baa6d5894c814625cdf19e71b797ab6354d9c (diff)
parentcc5e7e94310f4670248754df59db3c3600543469 (diff)
Merge branch 'master' of https://github.com/asciimoo/searx
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 %}