{% layout settings.customer_layout %}

Order {{ order.name }}Return to Account page

{% if order.cancelled %}

Order Cancelled on {{ order.cancelled_at | date: "%B %d, %Y %I:%M%p" }}

{{ order.cancel_reason }}
{% endif %}
Placed on {{ order.created_at | date: "%B %d, %Y %I:%M%p" }}

Billing Address

Payment Status: {{ order.financial_status }}

{% if order.shipping_address %}

Shipping Address

Fulfillment Status: {{ order.fulfillment_status }}

{% endif %}
{% for line_item in order.line_items %} {% endfor %} {% for discount in order.discounts %} {% endfor %} {% for shipping_method in order.shipping_methods %} {% endfor %} {% for tax_line in order.tax_lines %} {% endfor %}
Product SKU Price Quantity Total
{{ line_item.title | link_to: line_item.product.url }} {% if line_item.fulfillment %}
Fulfilled {{ line_item.fulfillment.created_at | date: "%b %d" }} {% if line_item.fulfillment.tracking_number %} {{ line_item.fulfillment.tracking_company }} #{{ line_item.fulfillment.tracking_number}} {% endif %}
{% endif %}
{{ line_item.sku }} {{ line_item.price | money }} {{ line_item.quantity }} {{ line_item.quantity | times: line_item.price | money }}
Subtotal: {{ order.subtotal_price | money }}
{{ discount.code }} Discount: {{ discount.savings | money }}
Shipping ({{ shipping_method.title }}): {{ shipping_method.price | money }}
Tax ({{ tax_line.title }} {{ tax_line.rate | times: 100 }}%): {{ tax_line.price | money }}
Total: {{ order.total_price | money }} {{ order.currency }}