diff options
author | Alexandre Flament <alex@al-f.net> | 2021-04-14 18:11:35 +0200 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2021-04-21 16:24:46 +0200 |
commit | 7cfd8d900a9d828e5fbbcb5df65ffedbf11a5a0f (patch) | |
tree | c9388e1739ac76eed7da08bab475cbc5e9a93da6 /searx/templates/oscar/stats.html | |
parent | c27fef1cdeeebcc17e21dbdc3dafad00de08a2ce (diff) | |
download | searxng-7cfd8d900a9d828e5fbbcb5df65ffedbf11a5a0f.tar.gz searxng-7cfd8d900a9d828e5fbbcb5df65ffedbf11a5a0f.zip |
[mod] oscar: /preferences , engines tab: report engine times
* display the median time instead of the average.
* add a "Reliability" column (sum up the metrics and the checker results).
* the "selected language", "SafeSearch", "Time range" values are displayed as "broken" when the checker tests fail.
Diffstat (limited to 'searx/templates/oscar/stats.html')
-rw-r--r-- | searx/templates/oscar/stats.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/searx/templates/oscar/stats.html b/searx/templates/oscar/stats.html index 0fb104210..0573bf65f 100644 --- a/searx/templates/oscar/stats.html +++ b/searx/templates/oscar/stats.html @@ -1,4 +1,16 @@ {% extends "oscar/base.html" %} +{% block styles %} + <link rel="stylesheet" href="{{ url_for('static', filename='css/charts.min.css') }}" type="text/css" /> + <style> + #engine-times { + --labels-size: 20rem; + } + + #engine-times th { + text-align: right; + } + </style> +{% endblock %} {% block title %}{{ _('stats') }} - {% endblock %} {% block content %} <div class="container-fluid"> |