{% extends "shop/checkout/base_confirm.html" %} {% load i18n %} {% load satchmo_util %} {# this is the Paypal confirm template #} {% block payment_step %}{% trans "Payment" %}{% endblock %} {% block payment_display %}

{% trans "Payment" %}

{% if not PAYMENT_LIVE %}PAYMENT TEST MODE
{% endif %} {% trans "Your payment will be processed through PayPal." %} {% endblock %} {% block payment_form %}
{% if subscription %} {% if subscription.trial1 %} {% endif %} {% if subscription.product.trial2_price %} {% endif %} {% if subscription.product.recurring %} {% endif %} {% else %} {% if order.partially_paid %} {% else %} {% for item in order.orderitem_set.all %} {% endfor %} {# LEAVE THE HANDLING CHARGE ALONE! PAYPAL SHIPPING WILL INEVITABLY BE MESSED UP IF YOU USE THEIR SHIPPING METHODS #} {# To work around their bizarre system, we are telling Paypal "no shipping" and adding all shipping charges as handling #} {% endif %} {% endif %}
{% endblock %}