{% for order in orders %}
<h3>Order summary {{ order.order_name }}</h3>
{% for line in order.line_items %}
{{ line.title }}, {{ line.variant.title }} ({{ line.variant.sku }}) x {{ line.quantity }} - {% if line.original_line_price != line.line_price %}
<del>{{ line.original_line_price | money }}</del>
{{ line.line_price | money }}
{% for p in line.properties %}
{% unless p.last == blank or p.first == '_' %}
<br /><strong>Option choices:</strong><br />
{% if p.last contains '/uploads/' %}
<strong>Subtotal: </strong>{{ order.subtotal_price | money }}<br />
<strong>Shipping: </strong>{{ order.shipping_price | money }}<br />
<strong>Total: </strong>{{ order.total_price | money_with_currency }}<br />
<h4>Customer information</h4>
<strong>Email</strong>: {{ order.email }}<br />
<strong>Shipping address:</strong>
{{ order.shipping_address.name }}<br/>
{{ order.shipping_address.address1 }} <br/>
{% if order.shipping_address.address2 %}
{{ order.shipping_address.address2 }}<br />
{{ order.shipping_address.city }}, {{ order.shipping_address.province }} {{ order.shipping_address.zip }}
<br/>{{ order.shipping_address.country }}