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

    {% trans "Checkout" %}

    {% block error_processing %} {% if errors %}

    {% block errorheader %}{% trans "The following error was returned while trying to process your payment. Please correct and resubmit." %}{% endblock %}

    {{ errors }} {% else %}

    {% trans "Please validate the following information, then submit your order." %}

    {% endif %} {% endblock %} {% block order_details %} {% order_details order default_view_tax %} {% endblock %} {% block payment_display %} {# override for module-specific needs, such as displaying card info #} {% endblock %} {% block payment_form %} {# override with any payment-module specific needs #}
    {% csrf_token %}
    {% endblock %} {% endblock content %}