engines.html 680B

12345678910111213141516171819202122232425
  1. {% extends 'base.html' %}
  2. {% block content %}
  3. <div class="row">
  4. <h2>{{ _('Currently used search engines') }}</h2>
  5. <table style="width: 80%;">
  6. <tr>
  7. <th>{{ _('Engine name') }}</th>
  8. <th>{{ _('Category') }}</th>
  9. </tr>
  10. {% for (categ,search_engines) in categs %}
  11. {% for search_engine in search_engines %}
  12. {% if not search_engine.private %}
  13. <tr>
  14. <td>{{ search_engine.name }}</td>
  15. <td>{{ categ }}</td>
  16. </tr>
  17. {% endif %}
  18. {% endfor %}
  19. {% endfor %}
  20. </table>
  21. <p class="right"><a href="/">{{ _('back') }}</a></p>
  22. </div>
  23. {% endblock %}