{% extends "layout.html" %} {% load currency_filters %} {% load history_tags %} {% block title %} {{ product.title }} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block content %}
{% if user.is_authenticated and user.is_staff %}
{% endif %}
{% include "catalogue/partials/gallery.html" %}

{{ product.get_title }}

{% include "catalogue/partials/stock_record.html" %} {% if reviews %}
    {% for review in reviews %}
  • {{ review.score }}
  • {% endfor %}
{% else %}

No Rating Add review

{% endif %}

Product Code: {{ product.upc }}


{% include "catalogue/partials/add_to_basket_form.html" %}
{% block product_description %}

Product Description

{{ product.description }}

{% endblock %} {% block product_info %}

Product Information

{% if product.stockrecord %} {% endif %} {% for av in product.attribute_values.all %} {% endfor %}
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 }}
{% endblock %} {% block product_review %}

Customer Reviews

Read customer reviews on this product.

{% if reviews %}
{% for review in reviews|slice:":3" %}

{{ 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 %}
{% endfor %}
{% endif %}
{% endblock product_review %}
{% if product.related_products.count %}

Related items

{% endif %} {% if product.recommended_products.count %}

Recommended items

{% endif %} {% recently_viewed_products %}
{% endblock content %}