searx/searx/templates/engines.html

27 lines
704 B
HTML

{% extends 'base.html' %}
{% block content %}
<div class="row">
<h2>Currently used search engines</h2>
<table style="width: 80%;">
<tr>
<th>Engine name</th>
<th>Category</th>
</tr>
{% for (categ,search_engines) in categs %}
{% for search_engine in search_engines %}
{% if not search_engine.private %}
<tr>
<td>{{ search_engine.name }}</td>
<td>{{ categ }}</td>
</tr>
{% endif %}
{% endfor %}
{% endfor %}
</table>
<p>Please add more engines to this list, pull requests are welcome!</p>
<p class="right"><a href="/">back</a></p>
</div>
{% endblock %}