{# /** * @file * This file is the default admin notification template for Ubercart. */ #}

{{ 'Order number:'|t }} {{ order_admin_link }}
{{ 'Customer:'|t }} {{ order_first_name }} {{ order_last_name }} - {{ order_email }}
{{ 'Order total:'|t }} {{ order_total }}
{{ 'Shipping method:'|t }} {{ order_shipping_method }}

{{ 'Products:'|t }}
{% for product in products %} - {{ product.qty }} x {{ product.title }} - {{ product.total_price }}
  {{ 'SKU'|t }}: {{ product.model }}
{% if product.data.attributes %} {% for attribute, option in product.data.attributes %}   {{ attribute }}: {{ option|join(', ') }}
{% endfor %} {% endif %}
{% endfor %}

{{ 'Order comments:'|t }}
{{ order_comments }}