Parent: [3abb2e] (diff)

Child: [462c18] (diff)

Download this file

search_index.html    32 lines (27 with data), 1.0 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{% extends 'jinja_master/master.html' %}
{% block title %}{{c.project.name}} / Search{% endblock %}
{% block header %}Search Project: {{q}}{% endblock %}
{% block content %}
<form method="GET" action=".">
<input type="text" name="q" value="{{q}}" class="title"/><br/>
Search history? <input type="checkbox" name="history" {% if history %}checked="on"{% endif %}/><br/>
&nbsp;<br/>
<input type="submit" value="Search"/>
</form>
{% if count == 0 and q %}
<p>No results.</p>
{% elif count == 1 and q %}
<p>{{count}} result.</p>
{% elif count > 1 and q %}
<p>{{count}} results.</p>
{% endif %}
{% for doc in results %}
<div>
<a href="{{doc['url_s']}}">{{doc.title_s}}</a><br/>
<py:if test="doc.get('snippet')">
{{doc['snippet']|safe}}<br/>
</py:if>
<hr/>
</div>
{% endfor %}
{% endblock %}