{% render 'sections/header.html' %}
Checkout
Complete your order.
Billing, delivery, coupon, and payment stay together here.
{{ forms.antiforgery_field }}
Name
Email
Phone
{% if checkout.addresses %}
Saved Shipping Address
Use manual address
{% for address in checkout.addresses %}
{{ address.label }} - {{ address.city }}
{% endfor %}
Use shipping address for billing too
Saved Billing Address
Use manual address
{% for address in checkout.addresses %}
{{ address.label }} - {{ address.city }}
{% endfor %}
{% endif %}
Shipping Address
{{ checkout.shipping_address }}
Billing Address
{{ checkout.billing_address }}
Notes
{{ checkout.notes }}
{% for gateway in checkout.available_gateways %}
{{ gateway.title }}
{{ gateway.mode_label }}
{% endfor %}
Create customer account after purchase
Pay Now
{% render 'sections/footer.html' %}