{% extends "shop/checkout/base_confirm.html" %}
{% load i18n %}
{% load satchmo_util %}
{% load smart_if %}
{# 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 order.paid_in_full %}
{% else %}
{% endif %}
{% endblock %}