diff options
Diffstat (limited to 'searx/templates/engines.html')
-rw-r--r-- | searx/templates/engines.html | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/searx/templates/engines.html b/searx/templates/engines.html deleted file mode 100644 index 613023a83..000000000 --- a/searx/templates/engines.html +++ /dev/null @@ -1,27 +0,0 @@ -{% extends 'base.html' %} -{% block content %} -<div class="row"> - <h2>{{ _('Currently used search engines') }}</h2> - - <table style="width: 80%;"> - <tr> - <th>{{ _('Engine name') }}</th> - <th>{{ _('Shortcut') }}</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>{{ shortcuts[search_engine.name] }}</td> - <td>{{ _(categ) }}</td> - </tr> - {% endif %} - {% endfor %} - {% endfor %} - </table> -<p class="right"><a href="/">{{ _('back') }}</a></p> -</div> -{% endblock %} |