{{ product.get_title }}
{% block product_stock_record %} {% include "oscar/catalogue/partials/stock_record.html" with verbose=1 %} {% endblock %} {% iffeature "reviews" %} {% include "oscar/catalogue/reviews/partials/review_stars.html" %} {% endiffeature %}{% if not product.is_parent %} {% block product_basket_form %} {% include "oscar/catalogue/partials/add_to_basket_form.html" %} {% endblock %} {% else %} {% block variants %}
{% trans 'Variants:' %}
{% for child in product.children.public %} {% purchase_info_for_product request child as child_session %} {% if child_session.availability.is_available_to_buy %} {{ child.get_title }}{% endif %} {% endfor %} {% endblock %} {% endif %}
{% trans "Product Description" %}
{{ product.description|safe }}
{% endif %} {% endblock %} {% block product_info %}{% trans "Product Information" %}
{% trans "UPC" %} | {{ product.upc }} |
---|---|
{% trans "Product Type" %} | {{ product.get_product_class.name }} |
{% trans "Price (excl. tax)" %} | {{ session.price.excl_tax|currency:session.price.currency }} |
{% trans "Price (incl. tax)" %} | {{ session.price.incl_tax|currency:session.price.currency }} |
{% trans "Tax" %} | {{ session.price.tax|currency:session.price.currency }} |
{% trans "Availability" %} | {{ session.availability.message }} |
{{ av.attribute.name }} | {{ av.value_as_html }} |
{% trans "Number of reviews" %} | {{ product.num_approved_reviews }} |
{% trans "Customer Reviews" %}
{% if product|is_review_permitted:user %} {% url 'catalogue:reviews-add' product_slug=product.slug product_pk=product.id as add_review_url %} {% blocktrans %}This product does not have any reviews yet - be the first to write one. {% endblocktrans %} {% else %} {% trans "This product does not have any reviews yet" %}. {% endif %}
{% else %}-
{% for review in product.reviews.approved.all|slice:":3" %}
- {% include 'oscar/catalogue/partials/review.html' %} {% endfor %}
{% trans "Recommended items" %}
-
{% for product in recommended_products %}
- {% render_product product %} {% endfor %}