mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 12:50:11 +01:00
27 lines
704 B
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 %}
|