{% extends 'layout.html' %} {% load currency_filters %} {% load thumbnail %} {% block content %}

Search for '{{ query }}'

{% if suggestion %} Did you mean {{ suggestion }}? {% endif %} {% if page.object_list %}
    {% for result in page.object_list %}
  1. {% for image in result.object.images.all %} {% if forloop.first %} {% thumbnail image.original "100" crop="center" as im %} {% endthumbnail %} {% endif %} {% endfor %} {{ result.object.get_title }}
    {% if result.object.is_group %} From {{ result.object.min_variant_price_incl_tax|currency }} {% else %} {% if result.object.has_stockrecord %} {{ result.object.stockrecord.price_incl_tax|currency }}
    {{ result.object.stockrecord.availability }} {% else %} Not available {% endif %} {% endif %}
  2. {% endfor %}
{% else %} No search results found. {% endif %} {% if page_obj %} {% endif %} {% endblock %}