{% include "catalogue/partials/gallery.html" %}
{{ product.get_title }}
{% include "catalogue/partials/stock_record.html" %} {% if reviews %}-
{% for review in reviews %}
- {{ review.score }} {% endfor %}
No Rating Add review
{% endif %}Product Code: {{ product.upc }}
{% include "catalogue/partials/add_to_basket_form.html" %}
Product Description
{{ product.description }}
{% endblock %} {% block product_info %}Product Information
UPC | {{ product.upc }} |
---|---|
Product class | {{ product.product_class.name }} |
Price (excl. tax) | {{ product.stockrecord.price_incl_tax|currency }} |
Price (incl. tax) | {{ product.stockrecord.price_excl_tax|currency }} |
Availability | {{ product.stockrecord.availability }} |
Product type | {% if product.is_group %}Product group{% else %}{% if product.is_variant %}Variant{% else %}Stand-alone{% endif %}{% endif %} |
{{ av.attribute.name }} | {{ av.value }} |
Num reviews | {{ reviews.count }} |
Customer Reviews
Read customer reviews on this product.
{% if reviews %}
{% for review in reviews|slice:":3" %}
{% endfor %}
{% endif %}
{{ review.title }} {{ review.score }}
Reviewed by {{ review.get_reviewer_name }} ({{ review.date_created }})
{{ review.body|linebreaks }}
{% include 'reviews/_vote_bit.html' %}
{% if review.has_votes %}
{{ review.num_up_votes }} customer{{ review.num_up_votes|pluralize }} found this review helpful.
{% endif %}
{% if product.related_products.count %}
{% endif %}
{% if product.recommended_products.count %}
{% endif %}
{% recently_viewed_products %}
Related items
-
{% for product in product.related_products.all %}
- {% include "promotions/partials/product_carousel.html" %} {% endfor %}
Recommended items
-
{% for product in product.recommended_products.all %}
- {% include "promotions/partials/product_carousel.html" %} {% endfor %}