{% extends 'layout.html' %} {% load currency_filters %} {% load thumbnail %} {% block header%} {% endblock %} {% block content %} {% if suggestion %} Did you mean {{ suggestion }}? {% endif %} {% if page.object_list %}
    {% for result in page.object_list %}
  1. {% with image=product.primary_image %} {% thumbnail image.original "400x400" upscale=False as thumb %} {{ product.get_title }} {% endthumbnail %} {% endwith %}

    {{ 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 %} {% include "catalogue/partials/pagination.html" %} {% endif %} {% endblock %}