mirror of https://github.com/searxng/searxng.git
12 lines
413 B
HTML
12 lines
413 B
HTML
<table>
|
|
{% for key, value in result.items() %}
|
|
{% if key in ['engine', 'engines', 'template', 'score', 'category', 'positions', 'pretty_url', 'parsed_url'] %}
|
|
{% continue %}
|
|
{% endif %}
|
|
<tr>
|
|
<td><b>{{ key|upper }}</b>: {{ value }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
<div class="engines">{% for engine in result.engines %}<span>{{ engine }}</span>{% endfor %}</div>{{- '' -}}
|