My Shop

Invoice no. {{ order.id }}
{{ order.created|date:"M d, Y" }}

Bill to

{{ order.first_name }} {{ order.last_name }}
{{ order.email }}
{{ order.address }}
{{ order.postal_code }}, {{ order.city }}

Items bought

{% for item in order.items.all %} {% endfor %}
Product Price Quantity Cost
{{ item.product.name }} ${{ item.price }} {{ item.quantity }} ${{ item.get_cost }}
Total ${{ order.get_total_cost }}
{% if order.paid %}Paid{% else %}Pending payment{% endif %}