{% extends "base_product.html" %} {% load i18n %} {% load satchmo_thumbnail %} {% load satchmo_price %} {% load satchmo_util %} {% load satchmo_currency satchmo_category%} {% load satchmo_ratings %} {% block extra-head %} {% endblock %} {% block content %}

{{ product.translated_name }}

{{ product.translated_description }}

{% trans "Price" %}{% if default_view_tax %} {% trans '(incl. tax)' %}{% endif %}:

{{ product.unit_price|currency }}

{% for pic in product.productimage_set.all %} {% endfor %} {% with product.translated_attributes as atts %}{% if atts %}

{% for att in product.translated_attributes %} {{ att.name }}: {{ att.value }}
{% endfor %}

{% endif %}{% endwith %} {% if error_message %}

{{ error_message }}

{% endif %}
{% if options %}

{% trans "Please choose your options" %}:

{% endif %} {% for option_group in options %} {{ option_group.name }} {% endfor %} {% trans "Quantity" %} {% if "wishlist"|app_enabled and user.is_authenticated %} {% endif %}
{% if sale %} {% include "discount/product_eligible.html" %} {% endif %} {% product_ratings %} {% endblock %}