{% extends 'base.html' %} {% block title %}Checkout - Thangka Arts{% endblock %} {% block content %}

Checkout

{% csrf_token %}
Customer Information
{{ form.first_name }}
{{ form.last_name }}
{{ form.email }}
{{ form.phone }}
Shipping Information
{{ form.shipping_address }}
{{ form.shipping_city }}
{{ form.shipping_state }}
{{ form.shipping_country }}
{{ form.shipping_zip_code }}
Billing Information
{{ form.same_as_shipping }}
{{ form.billing_address }}
{{ form.billing_city }}
{{ form.billing_state }}
{{ form.billing_country }}
{{ form.billing_zip_code }}
Order Summary
{% for item in cart.items.all %}
{{ item.product.name }} x {{ item.quantity }} ${{ item.total_price }}
{% endfor %}
Subtotal: ${{ cart.total_price }}
Shipping: FREE
Tax: $0.00

Total: ${{ cart.total_price }}

Free Worldwide Shipping

{% endblock %}