summaryrefslogtreecommitdiff
path: root/searx/templates/legacy/result_templates/key-value.html
blob: a5bb509d9e7f31d569faaf86c44c40ba95a8f53a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<table class="result-table">
    {% for key, value in result.items() %}
    {% if key in ['engine', 'engines', 'template', 'score', 'category', 'positions'] %}
        {% continue %}
    {% endif %}
    <tr>
        <td><b>{{ key|upper }}</b>: {{ value|safe }}</td>
    </tr>
    {% endfor %}
    <tr>
        <td><b>ENGINES</b>: {{ result.engines|join(', ') }}</td>
    </tr>
</table>