{% load satchmo_currency %} {% load satchmo_checkout %} {% load satchmo_util %} {% load app_plugins normalize_decimal %} {% load i18n %} {% if default_view_tax %}{% load satchmo_tax %}{% endif %}

{% trans "Items Ordered" %}

{% for item in order.orderitem_set.all %} {% if default_view_tax %} {{ item }} - {{item.unit_price_with_tax|currency}} x {{item.quantity|normalize_decimal}}{% if item.discount %} - {{ item.discount|currency }}{% endif %} = {{item.total_with_tax|currency}}
{% else %} {{ item }} - {{item.unit_price|currency}} x {{item.quantity|normalize_decimal}}{% if item.discount %} - {{ item.discount|currency }}{% endif %} = {{item.sub_total|currency}}
{% endif %} {% endfor %}

{% trans "Contact Information" %}

{{ order.contact.full_name }}
{{ order.contact.email }}
{{ order.contact.primary_phone.phone }}

{% trans "Billing Information" %}

{{ order.full_bill_street|linebreaksbr }}
{{ order.bill_city }}
{{ order.bill_state }}
{{ order.bill_postal_code }}
{{ order.bill_country }}
{% if order.is_shippable %}

{% trans "Shipping Address" %}

{{ order.full_ship_street|linebreaksbr }}
{{ order.ship_city }}
{{ order.ship_state }}
{{ order.ship_postal_code }}
{{ order.ship_country }}
{% endif %} {% if order.shipping_method %}

{% trans "Shipping Method" %}

{{ order.shipping_description }}
{{ order.shipping_method }}
{% if default_view_tax %} {{ order.shipping_with_tax|currency }} {% else %} {{ order.shipping_sub_total|currency }} {% endif %}
{% endif %}

{% trans "Total" %}

{% trans "Subtotal" %} = {% if default_view_tax %} {{ order.sub_total_with_tax|currency }} {% else %} {{ order.sub_total|currency }} {% endif %}
{% if order.discount %} {% trans "Discount" %} - {{order.item_discount|currency}}
{% endif %} {% if order.shipping_discount %} {% trans "Base Shipping" %} + {{order.shipping_cost|currency}}
{% trans "Shipping Discount" %} - {{order.shipping_discount|currency}}
{% if order.shipping_tax and default_view_tax %}{% trans "Shipping (incl. Tax)" %}{{ order.shipping_with_tax|currency}}{% endif %} {% endif %} {% trans "Shipping" %} + {% if default_view_tax %}{{ order.shipping_with_tax|currency }}{% else %}{{order.shipping_sub_total|currency}} {% endif %}
{% if order.tax %} {% if default_view_tax %} {% trans "Tax included" %} {% else %} {% trans "Tax" %} + {% endif %}{{order.tax|currency}}
{% endif %} {% trans "Total" %} = {{order.total|currency}}
{% order_payment_summary order %} {% plugin_point "order_details" %}