{% for order in orders %}

{{ text_invoice }} #{{ order.order_id }}

{{ text_invoice }}
{% if order.invoice_no %} {{ order.invoice_no }} {% else %}   {% endif %}
{{ text_order_id }}
{{ order.order_id }}
{{ text_date_added }}
{{ order.date_added }}
{{ text_store }}
{{ order.store_name }}
{{ text_store_address }}
{{ order.store_address }}
{{ text_store_telephone }}
{{ order.store_telephone }}
{{ text_store_email }}
{{ order.store_email }}
{{ text_payment_method }}
{{ order.payment_method }}
{% if order.shipping_method %}
{{ text_shipping_method }}
{{ order.shipping_method }}
{% endif %}
{% if order.payment_address %}
{{ text_payment_address }}
{{ order.payment_address }}
{% endif %} {% if order.shipping_address %}
{{ text_shipping_address }}
{{ order.shipping_address }}
{% endif %}
{% 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 %} {% if product.reward %}
- {{ text_points }}: {{ product.reward }} {% endif %} {% if product.subscription %}
- {{ text_subscription }}: {{ product.subscription }} {% endif %}
{{ 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 %}