2023-06-02 15:30:02 +02:00
|
|
|
<div class="scrollx">{{- '' -}}
|
|
|
|
<table class="striped">{{- '' -}}
|
|
|
|
<tr>{{- '' -}}
|
|
|
|
<th>{{ _('Allow') }}</th>{{- '' -}}
|
|
|
|
<th>{{ _('Keywords') }}</th>{{- '' -}}
|
|
|
|
<th>{{ _('Name') }}</th>{{- '' -}}
|
|
|
|
<th>{{ _('Description') }}</th>{{- '' -}}
|
|
|
|
<th>{{ _('Examples') }}</th>{{- '' -}}
|
|
|
|
</tr>{{- '' -}}
|
|
|
|
|
2023-09-08 12:49:01 +02:00
|
|
|
<tr class="pref-group" >{{- '' -}}
|
|
|
|
<th scope="colgroup" colspan="5">
|
|
|
|
{{- _("This is the list of SearXNG's instant answering modules.") -}}
|
|
|
|
</th>{{- '' -}}
|
|
|
|
</tr>
|
2023-06-02 15:30:02 +02:00
|
|
|
|
|
|
|
{%- for answerer in answerers -%}
|
|
|
|
<tr>{{- '' -}}
|
2023-09-08 12:49:01 +02:00
|
|
|
<td class="checkbox-col"></td>{{- '' -}}
|
2023-06-02 15:30:02 +02:00
|
|
|
<td>{{ answerer.keywords|join(', ') }}</td>{{- '' -}}
|
|
|
|
<td>{{ answerer.info.name }}</td>{{- '' -}}
|
|
|
|
<td>{{ answerer.info.description }}</td>{{- '' -}}
|
|
|
|
<td>{{ answerer.info.examples|join(', ') }}</td>{{- '' -}}
|
|
|
|
</tr>
|
|
|
|
{%- endfor -%}
|
|
|
|
|
2023-09-08 12:49:01 +02:00
|
|
|
<tr class="pref-group" >{{- '' -}}
|
|
|
|
<th scope="colgroup" colspan="5">
|
|
|
|
{{- _('This is the list of plugins.') -}}
|
|
|
|
</th>{{- '' -}}
|
|
|
|
</th>
|
2023-06-02 15:30:02 +02:00
|
|
|
|
|
|
|
{%- for plugin in plugins -%}
|
|
|
|
{%- if plugin.preference_section == 'query' -%}
|
|
|
|
<tr>{{- '' -}}
|
2023-09-08 12:49:01 +02:00
|
|
|
<td class="checkbox-col">{{- checkbox_onoff_reversed('plugin_' + plugin.id, plugin.id not in allowed_plugins) -}}</td>{{- '' -}}
|
2023-06-02 15:30:02 +02:00
|
|
|
<td>{{ plugin.query_keywords|join(', ') }}</td>{{- '' -}}
|
|
|
|
<td>{{ _(plugin.name) }}</td>{{- '' -}}
|
|
|
|
<td>{{ _(plugin.description) }}</td>{{- '' -}}
|
|
|
|
<td>{{ plugin.query_examples }}</td>{{- '' -}}
|
|
|
|
</tr>
|
|
|
|
{%- endif -%}
|
|
|
|
{%- endfor -%}
|
|
|
|
</table>{{- '' -}}
|
|
|
|
</div>{{- '' -}}
|