diff options
Diffstat (limited to 'searx/templates/engines.html')
| -rw-r--r-- | searx/templates/engines.html | 2 |
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 %} |