Invoice #{{ order.id }}
Date: {{ today|date:"d M Y" }}
Customer: {{ user.get_full_name|default:user.username }}
Shipping Address:
{{ order.shipping_address.full_address|default:"N/A" }}
Phone: {{ order.shipping_address.phone|default:"N/A" }}
| Product | Qty | Unit Price | Subtotal |
|---|---|---|---|
| {{ item.product.name }} | {{ item.quantity }} | ${{ item.price|floatformat:2 }} | ${{ total|floatformat:2 }} |
| Grand Total | ${{ order.total|floatformat:2 }} | ||