mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
o
This commit is contained in:
parent
0fc80da255
commit
850304b7b1
34 changed files with 1619 additions and 2 deletions
12
searx/templates/magi/result_templates/key-value.html
Normal file
12
searx/templates/magi/result_templates/key-value.html
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<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>{{- '' -}} -->
|
||||
<div class="engines"></div>{{- '' -}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue