51bf9827fb47e2ef44652839aa2bcb27a3cca170
[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 %}
21
22 {% block sidebar %}
23  <h3>Search tips</h3>
24  <dl>
25   <dt>Exclusion</dt>
26    <dd><tt>+foo -bar</tt></dd>
27   <dt>Logical OR</dt>
28    <dd><tt>foo OR bar</tt></dd>
29   <dt>Quoting</dt>
30    <dd><tt>"foo bar"</tt></dd>
31   <dt>Partial words</dt>
32    <dd><tt>foo*</tt></dd>
33   <dt>Particular fields only</dt>
34    <dd><tt>description:foo</tt></dd>
35    <dd><tt>name:foo.txt</tt></dd>
36    <dd><tt>extension:rst</tt></dd>
37    <dd><tt>content:Hello</tt></dd>
38  </dl>
39 {% endblock %}