diff options
| author | asciimoo <asciimoo@gmail.com> | 2014-02-09 11:17:53 +0100 |
|---|---|---|
| committer | asciimoo <asciimoo@gmail.com> | 2014-02-09 11:17:53 +0100 |
| commit | 9b4d60972a140b7751aa2b06b04d8e22ad5340d9 (patch) | |
| tree | 02dff79bceb34993f3acba0632fe1232c89acadb | |
| parent | 8408be977e487d66432da6c1c332fa802171d86b (diff) | |
[mod] engine list
| -rw-r--r-- | searx/templates/preferences.html | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/searx/templates/preferences.html b/searx/templates/preferences.html index 590515e26..dc33c5dfa 100644 --- a/searx/templates/preferences.html +++ b/searx/templates/preferences.html @@ -38,7 +38,6 @@ <table> <tr> <th>{{ _('Engine name') }}</th> - <th>{{ _('Shortcut') }}</th> <th>{{ _('Category') }}</th> <th>{{ _('Allow') }} / {{ _('Block') }}</th> </tr> @@ -47,8 +46,7 @@ {% if not search_engine.private %} <tr> - <td>{{ search_engine.name }}</td> - <td>{{ shortcuts[search_engine.name] }}</td> + <td>{{ search_engine.name }} ({{ shortcuts[search_engine.name] }})</td> <td>{{ _(categ) }}</td> <td class="engine_checkbox"> <input type="checkbox" id="engine_{{ categ }}_{{ search_engine.name|replace(' ', '_') }}" name="engine_{{ search_engine.name }}"{% if search_engine.name in blocked_engines %} checked="checked"{% endif %} /> |