summaryrefslogtreecommitdiff
path: root/searx/templates/simple/elements/engines_msg.html
blob: 9b8028b7e4ed124ae9f3186f445f944839d4489f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div id="engines_msg">
  <details>
    <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>