{% load basket_tags %} {% load thumbnail %} {% load i18n %} {% load purchase_info_tags %} {% purchase_info_for_product request product as session %}
{% with image=product.primary_image %} {% thumbnail image.original "200x200" upscale=False as thumb %} {{ product.get_title }} {% endthumbnail %} {% endwith %}
{% if session.availability.is_available_to_buy %}

{{ session.stockrecord.partner.name }}

{% endif %}

{{ product.title }}

{% include "catalogue/partials/stock_record.html" %}

{{ promotion.description|safe|truncatechars:200 }}

{% if product.is_group %} {% trans "View range" %} {% else %} {% if session.availability.is_available_to_buy %} {% basket_form request product 'single' as basket_form %}
{% csrf_token %} {{ basket_form.as_p }}
{% else %} {% trans "Out of Stock" %} {% endif %} {% endif %}