{% extends "product/product.html" %} {% load i18n %} {% load thumbnail %} {% load satchmo_discounts %} {% load satchmo_price %} {% load satchmo_currency satchmo_category%} {% load satchmo_util %} {% load satchmo_discounts %} {% load app_plugins %} {% block productdetail %}

{% blocktrans with product.translated_name as name %}Custom order for {{ name }}{% endblocktrans %}

{% autoescape off %}{{ product.translated_description }}{% endautoescape %}

{% trans "Price" %}:

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

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

{{ error_message }}

{% endif %}
{% for option_group in options %} {{ option_group.name}}
{% endfor %} {% for custom in product.customproduct.custom_text_fields.all %}
{{ custom.translated_name }} {% if custom.price_change %} ({{ custom.price_change|currency }} {% trans "more" %}){%endif%}
{% endfor %} {% trans "Quantity" %} {% plugin_point "product_add_buttons" %} {% plugin_point "product_form" %}
{% endblock %}