{% extends "layout.html" %} {% load currency_filters %} {% load history_tags %} {% load basket_tags %} {% block header %}
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 %} |
{{ attribute.type.name }} | {{ attribute.value }} |
Num reviews | {{ reviews.count }} |
{% for c in category.get_ancestors %} {% if not forloop.first %} > {% endif %}{{ c.name }} {% endfor %}
{% endfor %} {% block product_review %}Read customer reviews on this product. If you have read this book, why not post your own review?
{% with product.reviews.all as reviews %} {% if reviews %}{{ review.date_created }}
{{ review.body|linebreaks }}
Permalink {% include 'reviews/_vote_bit.html' %} {% if review.has_votes %}
{{ review.num_up_votes }} customer{{ review.num_up_votes|pluralize }} found this review helpful.
{% endif %}