{% for order in orders %}

{% if order.invoice_no %}{{ text_invoice }} #{{ order.invoice_no }}{% else %}{{ text_order }}{% endif %}

{{ text_order_detail }}
{{ order.store_name }}
{{ order.store_address }}
{{ text_telephone }} {{ order.store_telephone }}
{% if order.store_fax %} {{ text_fax }} {{ order.store_fax }}
{% endif %} {{ text_email }} {{ order.store_email }}
{{ text_website }} {{ order.store_url }}
{{ text_date_added }} {{ order.date_added }}
{% if order.invoice_no %} {{ text_invoice_no }} {{ order.invoice_no }}
{% endif %} {{ text_order_id }} {{ order.order_id }}
{{ text_payment_method }} {{ order.payment_method }}
{% if order.shipping_method %} {{ text_shipping_method }} {{ order.shipping_method }}
{% endif %}
{{ text_payment_address }} {{ text_shipping_address }}
{{ order.payment_address }}
{{ order.shipping_address }}
{% for product in order.product %} {% endfor %} {% for voucher in order.voucher %} {% endfor %} {% for total in order.total %} {% endfor %}
{{ column_product }} {{ column_model }} {{ column_quantity }} {{ column_price }} {{ column_total }}
{{ product.name }} {% for option in product.option %}
  - {{ option.name }}: {{ option.value }} {% endfor %}
{{ product.model }} {{ product.quantity }} {{ product.price }} {{ product.total }}
{{ voucher.description }} 1 {{ voucher.amount }} {{ voucher.amount }}
{{ total.title }} {{ total.text }}
{% if order.comment %}
{{ text_comment }}
{{ order.comment }}
{% endif %}
{% endfor %}