{% extends "oscar/base.html" %} {% block title %}{{ q }} - {% endblock %} {% block meta %}{% endblock %} {% block content %}

{{ _('Search results') }}

{% include 'oscar/search.html' %} {% if answers %} {% for answer in answers %}
{{ answer }}
{% endfor %} {% endif %} {% for result in results %}
{% set index = loop.index %} {% if result.template %} {% include get_result_template('oscar', result['template']) %} {% else %} {% include 'oscar/result_templates/default.html' %} {% endif %}
{% endfor %} {% if not results and not answers %} {% include 'oscar/messages/no_results.html' %} {% endif %}
{% if paging %} {% if rtl %}
{% else %}
{% endif %} {% endif %}
{% endblock %}