{% include "catalogue/partials/gallery.html" %}
{{ product.get_title }}
{% include "catalogue/partials/stock_record.html" %} {% if reviews %}-
{% for review in reviews %}
- {{ review.score }} {% endfor %}
{% include "catalogue/partials/add_to_basket_form.html" %}
{% trans "Product Description" %}
{{ product.description|safe }}
{% endif %} {% endblock %} {% block product_info %}Product Information
{% trans "UPC" %} | {{ product.upc }} |
---|---|
{% trans "Product class" %} | {{ product.product_class.name }} |
{% trans "Price (excl. tax)" %} | {{ product.stockrecord.price_incl_tax|currency }} |
{% trans "Price (incl. tax)" %} | {{ product.stockrecord.price_excl_tax|currency }} |
{% trans "Availability" %} | {{ product.stockrecord.availability }} |
{{ av.attribute.name }} | {{ av.value }} |
{% trans "Num reviews" %} | {{ reviews.count }} |
{% trans "Customer Reviews" %}
{% trans "Read customer reviews on this product." %}
{% else %}{% trans "Be the first to review this product." %}
{% endif %} {% if reviews %}
{% for review in reviews|slice:":3" %}
{% endfor %}
{% endif %}
{{ review.title }} {{ review.score }}
{% trans "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 %}
{% trans "Related items" %}
-
{% for product in product.related_products.all %}
- {% include "promotions/partials/product_carousel.html" %} {% endfor %}
{% trans "Recommended items" %}
-
{% for product in product.recommended_products.all %}
- {% include "promotions/partials/product_carousel.html" %} {% endfor %}