Order {{ order.number }}

{% if order.attempted? %}

State
{{ order.state }}

Transaction
{{ order.transaction_id }}

{% if order.customer %}
  • Customer:
  • {% if order.customer.first_name or order.customer.last_name %}
  • {{ order.customer.first_name }} {{ order.customer.last_name }}
  • {% endif %}
  • {{ order.customer.email }}
{% endif %}
{% if order.shipping_address %}
  • Ship to:
  • {{ order.shipping_address.first_name }} {{ order.shipping_address.last_name }}
  • {{ order.shipping_address.street_address_1 }}
    {% if order.shipping_address.street_address_2 %} {{ order.shipping_address.street_address_2 }}
    {% endif %} {{ order.shipping_address.city }}, {{ order.shipping_address.state }} {{ order.shipping_address.postal_code }} {{ order.shipping_address.country }}
{% endif %}
{% endif %} {% for item in order.items %} {% endfor %} {% unless order.digital %} {% endunless %} {% if order.discount? %} {% endif %} {% unless order.attempted? %} {% endunless %}
Items
{{ item.name }} {{ item.unit_price | money }} {{ item.quantity }} {{ item.total_price | money }}
Subtotal: {{ order.subtotal | money }}
Shipping: {{ order.shipping | money }}
Discount: {{ order.discount_amount | money }}
Total: {{ order.total_price | money_with_currency }}
{% if order.attempted? and order.downloads.size > 0 %} {% for download in order.downloads %} {% endfor %}
Instant Downloads
{{ download | link_to_download }}
{% endif %}

Have a question or problem about this order? Please reply to your confirmation email.