summaryrefslogtreecommitdiff
path: root/searx/templates/simple/elements/engines_msg.html
blob: 33f31842d0e03f5023244114d1cfa0d381977c02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div id="engines_msg">
  <details class="sidebar-collapsable">
    <summary class="title" id="engines_msg-title">{{ _('Messages from the search engines') }}</summary>
    <div class="dialog-error" role="alert">
      {{ icon_big('warning') }}
      <div>
        <p>
          <strong>{{ _('Error!') }}</strong>
          {{ _('Engines cannot retrieve results') }}:
        </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>
    </div>
  </details>
</div>