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

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

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

{% trans "Price" %}:

{{ product.unit_price|currency }}

{% for pic in product.productimage_set.all %} {% 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" %} {% if "wishlist"|app_enabled and user.is_authenticated %} {% endif %}
{% if sale %} {% include "discount/product_eligible.html" %} {% endif %} {% product_ratings %} {% endblock %}