diff options
Diffstat (limited to 'searx/templates/simple')
-rw-r--r-- | searx/templates/simple/messages/no_results.html | 12 | ||||
-rw-r--r-- | searx/templates/simple/preferences.html | 8 | ||||
-rw-r--r-- | searx/templates/simple/results.html | 10 |
3 files changed, 20 insertions, 10 deletions
diff --git a/searx/templates/simple/messages/no_results.html b/searx/templates/simple/messages/no_results.html index df75ef228..b7f02167e 100644 --- a/searx/templates/simple/messages/no_results.html +++ b/searx/templates/simple/messages/no_results.html @@ -2,11 +2,15 @@ {% if unresponsive_engines %} <div class="dialog-error" role="alert"> <p><strong>{{ _('Error!') }}</strong> {{ _('Engines cannot retrieve results.') }}</p> - <p> - {% for engine_name, error_type in unresponsive_engines %} - {{ engine_name }} ({{ error_type }}){% if not loop.last %}, {% endif %} - {% endfor %} + {% for engine_name, error_type in unresponsive_engines %} + <p>{{- '' -}} + {{- engine_name }} ( + <a href="{{ url_for('stats', engine=engine_name|e) }}" title="{{ _('View error logs and submit a bug report') }}"> + {{- error_type -}} + </a> ){{- '' -}} </p> + {%- endfor %} + <p><small>{{ _('Please, try again later or find another searx instance.') }} (<a href="{{ brand.PUBLIC_INSTANCES }}">{{ _('Public instances') }}</a>) </small></p> </div> {% else %} diff --git a/searx/templates/simple/preferences.html b/searx/templates/simple/preferences.html index c7c379618..76d56675b 100644 --- a/searx/templates/simple/preferences.html +++ b/searx/templates/simple/preferences.html @@ -63,9 +63,11 @@ {% endif %} {% if checker_result or errors %} <td class="{{ label }}">{{- "" -}} - <span aria-labelledby="{{engine_name}}_reliablity"> - {%- if reliabilities[engine_name].checker %}{{ icon('warning', 'The checker fails on the some tests') }}{% endif %} {{ r -}} - </span>{{- "" -}} + <a href="{{ url_for('stats', engine=engine_name|e) }}">{{- "" -}} + <span aria-labelledby="{{engine_name}}_reliablity"> + {%- if reliabilities[engine_name].checker %}{{ icon('warning', 'The checker fails on the some tests') }}{% endif %} {{ r -}} + </span>{{- "" -}} + </a>{{- "" -}} <div class="engine-tooltip" style="right: 12rem;" role="tooltip" id="{{engine_name}}_reliablity"> {%- if checker_result -%} <p>{{ _("The checker fails on this tests: ") }} {{ ', '.join(checker_result) }}</p> diff --git a/searx/templates/simple/results.html b/searx/templates/simple/results.html index 7ece6c7ad..c53529edd 100644 --- a/searx/templates/simple/results.html +++ b/searx/templates/simple/results.html @@ -43,9 +43,13 @@ {% if unresponsive_engines and results|length >= 1 %} <div class="dialog-error" role="alert"> <p><strong>{{ _('Error!') }}</strong> {{ _('Engines cannot retrieve results') }}:</p> - <p>{% for engine_name, error_type in unresponsive_engines %} - {{- engine_name }} ({{- error_type -}}){% if not loop.last %}, {% endif %} - {% endfor %}</p> + {%- for engine_name, error_type in unresponsive_engines -%} + <p>{{- engine_name }} ( + <a href="{{ url_for('stats', engine=engine_name|e) }}" title="{{ _('View error logs and submit a bug report') }}"> + {{- error_type -}} + </a> ){{- '' -}} + </p> + {% endfor %} </div> {% endif %} |