{% extends "shop/base.html" %} {% load i18n %} {% load satchmo_order satchmo_currency %} {% block navbar %}
  • {% trans "Home" %}
  • {% trans "Checkout" %}
  • {% endblock %} {% block content %}

    {% trans "Order Balance" %}

    {% csrf_token %} {% if form.paymentmethod.errors %}{% endif %} {% endifequal %}
    {% with order.balance|currency as orderbalance %} {% blocktrans %}To complete this order, you need to pay the {{ orderbalance }} balance remaining on this order.{% endblocktrans %} {% endwith %}
    {% ifequal paymentmethod_ct 1 %}{# If we only have one payment method, then the form renders it as a hidden field #}{{ form.paymentmethod }} {% else %}

    {% trans "How do you want to pay?" %}

    {{ form.paymentmethod }}
     *** {{ form.paymentmethod.errors|join:", " }}
    {% endblock %}