{% for order in orders %}

{{ text_picklist }} #{{ order.order_id }}

{{ text_order_detail }}
{{ order.store_name }}
{{ order.store_address }}
{{ text_telephone }} {{ order.store_telephone }}
{{ 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 }}
{% if order.shipping_method %} {{ text_shipping_method }} {{ order.shipping_method }}
{% endif %}
{{ text_shipping_address }} {{ text_contact }}
{{ order.shipping_address }} {{ order.email }}
{{ order.telephone }}
{% for product in order.product %} {% endfor %}
{{ column_location }} {{ column_reference }} {{ column_product }} {{ column_weight }} {{ column_model }} {{ column_quantity }}
{{ product.location }} {% if product.sku %} {{ text_sku }} {{ product.sku }}
{% endif %} {% if product.upc %} {{ text_upc }} {{ product.upc }}
{% endif %} {% if product.ean %} {{ text_ean }} {{ product.ean }}
{% endif %} {% if product.jan %} {{ text_jan }} {{ product.jan }}
{% endif %} {% if product.isbn %} {{ text_isbn }} {{ product.isbn }}
{% endif %} {% if product.mpn %} {{ text_mpn }}{{ product.mpn }}
{% endif %}
{{ product.name }} {% for option in product.option %}
  - {{ option.name }}: {{ option.value }} {% endfor %}
{{ product.weight }} {{ product.model }} {{ product.quantity }}
{% if order.comment %}
{{ text_comment }}
{{ order.comment }}
{% endif %}
{% endfor %}