summaryrefslogtreecommitdiff
path: root/searx/templates/engines.html
diff options
context:
space:
mode:
authorasciimoo <asciimoo@gmail.com>2014-01-31 16:09:58 +0100
committerasciimoo <asciimoo@gmail.com>2014-01-31 16:09:58 +0100
commit48dc019b94cd171cb69cd8d4cd4ac89d18900ec4 (patch)
treedc87bcc30347457fd92ed1b6f287b644aedd99f3 /searx/templates/engines.html
parentaf6e90009f3203dd7c4ce2ae7e4c789262ba1fa4 (diff)
[enh] displaying shortcuts at engines page
Diffstat (limited to 'searx/templates/engines.html')
-rw-r--r--searx/templates/engines.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/searx/templates/engines.html b/searx/templates/engines.html
index 8a7aaf4a0..613023a83 100644
--- a/searx/templates/engines.html
+++ b/searx/templates/engines.html
@@ -6,6 +6,7 @@
<table style="width: 80%;">
<tr>
<th>{{ _('Engine name') }}</th>
+ <th>{{ _('Shortcut') }}</th>
<th>{{ _('Category') }}</th>
</tr>
{% for (categ,search_engines) in categs %}
@@ -14,6 +15,7 @@
{% if not search_engine.private %}
<tr>
<td>{{ search_engine.name }}</td>
+ <td>{{ shortcuts[search_engine.name] }}</td>
<td>{{ _(categ) }}</td>
</tr>
{% endif %}