{% extends "product/product.html" %} {% load i18n %} {% load thumbnail %} {% load satchmo_price %} {% load satchmo_util %} {% load satchmo_currency satchmo_category%} {% load satchmo_discounts satchmo_tax %} {% load app_plugins %} {% load satchmo_thumbnail %} {% block extra-head %} {% include "shop/_jquery.html" %} {% include "shop/_jquery_form.html" %} {% blackbird_logging %} {% endblock %} {% block productdetail %}

{{ product.translated_name }}

{{ product.translated_description }}

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

{% spaceless %} {% if sale %}{{ product|discount_price:""|currency }}{% endif %} {{ product|discount_price:sale|currency }} {% endspaceless %}

{% for pic in product.productimage_set.all %} {% thumbnail pic.picture 280x280 as image %} {% endfor %} {% with product.translated_attributes as atts %}{% if atts %}

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

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

{{ error_message }}

{% endif %}
{% csrf_token %} {% if options %}

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

{% endif %} {% for option_group in options %} {{ option_group.name }} {% endfor %} {% trans "Quantity" %} {% plugin_point "product_add_buttons" %} {% plugin_point "product_form" %}
{% endblock %}