2013-10-14 21:09:13 +00:00
|
|
|
{% extends "base.html" %}
|
2013-10-19 21:25:37 +00:00
|
|
|
{% block head %} {% endblock %}
|
2013-10-14 21:09:13 +00:00
|
|
|
{% block content %}
|
2013-10-19 17:55:43 +00:00
|
|
|
<div class="small">
|
|
|
|
{% include 'search.html' %}
|
|
|
|
</div>
|
2013-10-19 16:29:17 +00:00
|
|
|
<div id="results">
|
2013-11-13 18:35:32 +00:00
|
|
|
{% if suggestions %}
|
2013-11-15 00:00:00 +00:00
|
|
|
<div id="suggestions">Suggestions: {% for suggestion in suggestions %}<form method="post" action=""><input type="hidden" name="q" value="{{suggestion}}"><input type="submit" value="{{ suggestion }}" /></form>{% endfor %}</div>
|
2013-11-13 18:35:32 +00:00
|
|
|
{% endif %}
|
|
|
|
<div>
|
|
|
|
Number of results: {{ number_of_results }}
|
|
|
|
</div>
|
2013-10-19 16:29:17 +00:00
|
|
|
{% for result in results %}
|
2013-10-22 21:32:52 +00:00
|
|
|
{% if result['template'] %}
|
|
|
|
{% include 'result_templates/'+result['template'] %}
|
|
|
|
{% else %}
|
|
|
|
{% include 'result_templates/default.html' %}
|
|
|
|
{% endif %}
|
2013-10-19 16:29:17 +00:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2013-10-14 21:09:13 +00:00
|
|
|
{% endblock %}
|