summaryrefslogtreecommitdiff
path: root/searx/templates/engines.html
blob: 008e860f1bc6a8f840e2a97dc7c7d2afcc9a5ad4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% 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 class="right"><a href="/">{{ _('back') }}</a></p>
</div>
{% endblock %}