{% extends 'base.html' %} {% block title %}Order #{{ order.order_number }} - Thangka Arts{% endblock %} {% block content %}

Order #{{ order.order_number }}

{{ order.get_status_display }} {{ order.get_payment_status_display }}
Order Items
{% for item in order.items.all %}
{{ item.product_name }}

Quantity: {{ item.quantity }}

${{ item.total_price }}
{% endfor %}
Shipping Information

{{ order.full_name }}

{{ order.shipping_address }}

{{ order.shipping_city }}, {{ order.shipping_state }} {{ order.shipping_zip_code }}

{{ order.shipping_country }}

Billing Information

{{ order.full_name }}

{{ order.billing_address }}

{{ order.billing_city }}, {{ order.billing_state }} {{ order.billing_zip_code }}

{{ order.billing_country }}

Order Summary
Subtotal: ${{ order.subtotal }}
Shipping: FREE
Tax: ${{ order.tax_amount }}

Total: ${{ order.total_amount }}
Order Date:
{{ order.created|date:"F j, Y, g:i a" }}
{% if order.payment_status == 'pending' %} {% endif %}
{% endblock %}