{% load wagtailimages_tags %} {% load wagtailcore_tags %} {% load static %} {% load product_tags %} {% load thumbnail %} {% load currency_filters %} {% for item in self %} {% for product in item.products %}
{% with image=product.primary_image %} {% thumbnail image.original "445x333" upscale=False as thumb %} {{ product.get_title }}
{% endthumbnail %} {% endwith %}

{{ product.get_title }}

    {% for av in product.attribute_values.all %}
  • {{ av.value_as_html }}
  • {% endfor %}
{% if product.stockrecords.all %}

{{ product.stockrecords.first.price_excl_tax|currency:"EUR" }}

{% endif %}
{% if product.categories.first %}

>>meer {{ product.categories.first }}

{% endif %}
{% endfor %} {% endfor %}