engines.html 704 B

1234567891011121314151617181920212223242526
  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>Please add more engines to this list, pull requests are welcome!</p>
  22. <p class="right"><a href="/">back</a></p>
  23. </div>
  24. {% endblock %}