summaryrefslogtreecommitdiff
path: root/searx/templates/simple/preferences/answerers.html
blob: 983646ae96a533bba3fa95c0de40315d78167a85 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<div class="scrollx">{{- '' -}}
  <table class="striped">{{- '' -}}
    <tr>{{- '' -}}
      <th>{{ _('Allow') }}</th>{{- '' -}}
      <th>{{ _('Keywords') }}</th>{{- '' -}}
      <th>{{ _('Name') }}</th>{{- '' -}}
      <th>{{ _('Description') }}</th>{{- '' -}}
      <th>{{ _('Examples') }}</th>{{- '' -}}
    </tr>{{- '' -}}

    <tr class="pref-group" >{{- '' -}}
      <th scope="colgroup" colspan="5">
        {{- _("This is the list of SearXNG's instant answering modules.") -}}
      </th>{{- '' -}}
    </tr>

    {%- for answerer in answerers -%}
      <tr>{{- '' -}}
        <td class="checkbox-col"></td>{{- '' -}}
        <td>{{ answerer.keywords|join(', ') }}</td>{{- '' -}}
        <td>{{ answerer.info.name }}</td>{{- '' -}}
        <td>{{ answerer.info.description }}</td>{{- '' -}}
        <td>{{ answerer.info.examples|join(', ') }}</td>{{- '' -}}
      </tr>
    {%- endfor -%}

    <tr class="pref-group" >{{- '' -}}
      <th scope="colgroup" colspan="5">
        {{- _('This is the list of plugins.') -}}
      </th>{{- '' -}}
    </th>

    {%- for plugin in plugins -%}
      {%- if plugin.preference_section == 'query' -%}
        <tr>{{- '' -}}
          <td class="checkbox-col">{{- checkbox_onoff_reversed('plugin_' + plugin.id, plugin.id not in allowed_plugins, 'plugin_labelledby' + plugin.id) -}}</td>{{- '' -}}
          <td>{{ plugin.query_keywords|join(', ') }}</td>{{- '' -}}
          <td>{{ _(plugin.name) }}</td>{{- '' -}}
          <td id="{{ 'plugin_labelledby' + plugin.id }}">{{ _(plugin.description) }}</td>{{- '' -}}
          <td>{{ plugin.query_examples }}</td>{{- '' -}}
        </tr>
      {%- endif -%}
    {%- endfor -%}
  </table>{{- '' -}}
</div>{{- '' -}}