{% if is_custom %}{% with cartitem.product.customproduct as custom %} {% load i18n satchmo_currency %}   {% ifnotequal custom.downpayment 100 %} {% trans 'Base Price: ' %}{{ custom.full_price|currency }}
{% trans 'price at right is your deposit, you will receive a bill for the remainder when your item is ready.' %}
{% endifnotequal %} {% for detail in cartitem.details.all %} {% if not forloop.first %}
{% endif %} {{ detail.name }}: {{ detail.value }} {% if detail.price_change %} {{ detail.price_change|currency}} {% endif %} {% endfor %}   {% endwith %}{% endif %}