{% from 'simple/macros.html' import icon %}
{% extends "simple/base.html" %}
{%- macro th_sort(column_order, column_name) -%}
{% if column_order==sort_order %}
{{ column_name }} {{ icon('arrow-dropdown') }}
{% else %}
{{ column_name }}
{% endif %}
{%- endmacro -%}
{% block head %} {% endblock %}
{% block content %}
searx
{{ th_sort('name', _("Engine name")) }} | {{ th_sort('score', _('Scores')) }} | {{ th_sort('result_count', _('Result count')) }} | {{ th_sort('time', _('Response time')) }} | {{ th_sort('reliability', _('Reliability')) }} | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ engine_stat.name }} |
{% if engine_stat.score %}
{{ engine_stat.score|round(1) }}
{{- "" -}}
{% endif %}
{{ _('Scores per result') }}: {{ engine_stat.score_per_result | round(3) }} |
{%- if engine_stat.result_count -%} | {{- "" -}} {%- endif -%}
{%- if engine_stat.total -%}
{{- "" -}}
{%- endif -%}
|
{{- "" -}}
{{- "" -}}
{{ engine_reliabilities.get(engine_stat.name, {}).get('reliablity') }} |