1
0
mirror of https://github.com/searxng/searxng.git synced 2024-08-25 15:30:20 +02:00
searxng/searx/templates/engines.html

26 lines
683 B
HTML
Raw Normal View History

2014-01-17 16:23:23 +01:00
{% extends 'base.html' %}
{% block content %}
<div class="row">
2014-01-22 00:17:49 +01:00
<h2>{{ _('Currently used search engines') }}</h2>
2014-01-17 16:23:23 +01:00
<table style="width: 80%;">
<tr>
2014-01-22 00:17:49 +01:00
<th>{{ _('Engine name') }}</th>
<th>{{ _('Category') }}</th>
2014-01-17 16:23:23 +01:00
</tr>
{% for (categ,search_engines) in categs %}
{% for search_engine in search_engines %}
{% if not search_engine.private %}
<tr>
<td>{{ search_engine.name }}</td>
2014-01-24 13:35:44 +01:00
<td>{{ _(categ) }}</td>
2014-01-17 16:23:23 +01:00
</tr>
{% endif %}
{% endfor %}
{% endfor %}
</table>
2014-01-22 00:17:49 +01:00
<p class="right"><a href="/">{{ _('back') }}</a></p>
2014-01-17 16:23:23 +01:00
</div>
{% endblock %}