Thank you for your order!
We've received your registration. Here are your order details.
|
Order Reference
{{ order.reference }}
|
| Item |
Qty |
Amount |
{% for item in order.line_items.all %}
| {{ item.description }} |
{{ item.quantity }} |
${{ item.line_total }} |
{% endfor %}
{% if order.discount_amount %}
| Subtotal |
${{ order.subtotal }} |
| Discount |
-${{ order.discount_amount }} |
{% endif %}
| Total |
${{ order.total }} |
{% if order.billing_name or order.billing_email %}
|
Billed To
{% if order.billing_name %}{{ order.billing_name }}{% endif %}
{% if order.billing_email %}{{ order.billing_email }}{% endif %}
{% if order.billing_company %}{{ order.billing_company }}{% endif %}
|
{% endif %}
|