searching works now (pager missing)
[phorkie.git] / data / templates / search.htm
1 {% extends "base.htm" %}
2 {% block title %}Search results{% endblock %}
3
4 {% block content %}
5 {% if sres.results == 0 %}
6  <p>
7   Sorry, no results for "<tt>{{query}}</tt>".
8  </p>
9 {% else %}
10  <p>
11   Found {{sres.results}} search results for "<tt>{{query}}</tt>":
12  </p>
13  <ul class="nav nav-pills nav-stacked">
14  {% for repo in sres.repos %}
15    {% include 'repo-list.htm' %}
16  {% endfor %}
17  </ul>
18 {% endif %}
19
20 {% endblock %}