<%inherit file="shopping_cart_flow.html" /> <%! from django.utils.translation import ugettext as _ from django.core.urlresolvers import reverse %> <%block name="billing_details_highlight">
  • ${_('Billing Details')}
  • <%block name="confirmation_highlight"> <%block name="custom_content">
    % if shoppingcart_items:

    ${_('You can proceed to payment at any point in time. Any additional information you provide will be included in your receipt.')}

    ${_('Purchasing Organizational Details')}

    ${_('Organization Contact')}

    ${_('Additional Receipt Recipient')}

    ${_('Total')}: ${currency_symbol}${"{0:0.2f}".format(amount)} ${currency.upper()}
    ${form_html}

    ${_('If no additional billing details are populated the payment confirmation will be sent to the user making the purchase.')}

    ${_('Payment processing occurs on a separate secure site.')}
    %else:

    ${_('Your Shopping cart is currently empty.')}

    ${_('View Courses')}
    %endif