2014-09-27 10:33:22 +00:00
|
|
|
{% extends "oscar/base.html" %}
|
|
|
|
{% block title %}{{ q }} - {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-8" id="main_results">
|
|
|
|
<h1 class="sr-only">{{ _('Search results') }}</h1>
|
|
|
|
{% include 'oscar/search.html' %}
|
2014-09-27 12:44:34 +00:00
|
|
|
|
2014-10-26 18:20:20 +00:00
|
|
|
{% if answers %}
|
|
|
|
{% for answer in answers %}
|
|
|
|
<div class="result well">
|
|
|
|
<span>{{ answer }}</span>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
|
2014-09-27 10:33:22 +00:00
|
|
|
{% for result in results %}
|
|
|
|
<div class="result {% if result['template'] %}result-{{ result.template|replace('.html', '') }}{% else %}result-default{% endif %}">
|
|
|
|
{% set index = loop.index %}
|
2015-01-01 17:59:53 +00:00
|
|
|
{% if result.template %}
|
|
|
|
{% include get_result_template('oscar', result['template']) %}
|
|
|
|
{% else %}
|
|
|
|
{% include 'oscar/result_templates/default.html' %}
|
|
|
|
{% endif %}
|
2014-09-27 10:33:22 +00:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2014-10-01 17:46:29 +00:00
|
|
|
|
|
|
|
{% if not results %}
|
|
|
|
{% include 'oscar/messages/no_results.html' %}
|
|
|
|
{% endif %}
|
2014-09-27 12:44:34 +00:00
|
|
|
|
2014-09-27 10:33:22 +00:00
|
|
|
<div class="clearfix"></div>
|
2014-09-27 12:44:34 +00:00
|
|
|
|
|
|
|
{% if paging %}
|
|
|
|
<div id="pagination">
|
|
|
|
<div class="pull-left">
|
|
|
|
<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" class="pull-left">
|
|
|
|
<input type="hidden" name="q" value="{{ q }}" />
|
|
|
|
{% for category in selected_categories %}<input type="hidden" name="category_{{ category }}" value="1"/>{% endfor %}
|
|
|
|
<input type="hidden" name="pageno" value="{{ pageno-1 }}" />
|
|
|
|
<button type="submit" class="btn btn-default" {% if pageno == 1 %}disabled{% endif %}><span class="glyphicon glyphicon-backward"></span> {{ _('previous page') }}</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="pull-right">
|
|
|
|
<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" class="pull-left">
|
|
|
|
{% for category in selected_categories %}<input type="hidden" name="category_{{ category }}" value="1"/>{% endfor %}
|
|
|
|
<input type="hidden" name="q" value="{{ q }}" />
|
|
|
|
<input type="hidden" name="pageno" value="{{ pageno+1 }}" />
|
|
|
|
<button type="submit" class="btn btn-default"><span class="glyphicon glyphicon-forward"></span> {{ _('next page') }}</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div><!-- /#pagination -->
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
{% endif %}
|
|
|
|
</div><!-- /#main_results -->
|
|
|
|
|
2014-09-27 10:33:22 +00:00
|
|
|
<div class="col-sm-4" id="sidebar_results">
|
2014-12-08 00:01:33 +00:00
|
|
|
{% if infoboxes %}
|
|
|
|
{% for infobox in infoboxes %}
|
|
|
|
{% include 'oscar/infobox.html' %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2014-09-27 12:44:34 +00:00
|
|
|
|
|
|
|
{% if suggestions %}
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
2014-10-05 13:29:21 +00:00
|
|
|
<h4 class="panel-title">{{ _('Suggestions') }}</h4>
|
2014-09-27 12:44:34 +00:00
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
{% for suggestion in suggestions %}
|
|
|
|
<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" role="navigation" class="form-inline pull-left suggestion_item">
|
|
|
|
<input type="hidden" name="q" value="{{ suggestion }}">
|
|
|
|
<button type="submit" class="btn btn-default btn-xs">{{ suggestion }}</button>
|
|
|
|
</form>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
2014-10-05 13:29:21 +00:00
|
|
|
<h4 class="panel-title">{{ _('Links') }}</h4>
|
2014-09-27 12:44:34 +00:00
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
<form role="form">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="search_url">{{ _('Search URL') }}</label>
|
2014-12-08 00:01:33 +00:00
|
|
|
<input id="search_url" type="url" class="form-control select-all-on-click cursor-text" name="search_url" value="{{ base_url }}?q={{ q|urlencode }}&pageno={{ pageno }}{% if selected_categories %}&category_{{ selected_categories|join("&category_")|replace(' ','+') }}{% endif %}" readonly>
|
2014-09-27 12:44:34 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<label>{{ _('Download results') }}</label>
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
{% for output_type in ('csv', 'json', 'rss') %}
|
|
|
|
<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" class="form-inline pull-left result_download">
|
|
|
|
<input type="hidden" name="q" value="{{ q }}">
|
|
|
|
<input type="hidden" name="format" value="{{ output_type }}">
|
|
|
|
{% for category in selected_categories %}<input type="hidden" name="category_{{ category }}" value="1">{% endfor %}
|
|
|
|
<input type="hidden" name="pageno" value="{{ pageno }}">
|
|
|
|
<button type="submit" class="btn btn-default">{{ output_type }}</button>
|
|
|
|
</form>
|
|
|
|
{% endfor %}
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div><!-- /#sidebar_results -->
|
2014-09-27 10:33:22 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|