{% load i18n %}
{% trans "Order Status" %}: {{ order.get_status_display }}
{% trans "Shipping Address" %} {% if order.shipping_address_text %}{% endif %} |
{% trans "Billing Address" %} {% if order.billing_address_text %}{% endif %} |
{% trans "Product name" %} | {% trans "Unit price" %} | {% trans "Quantity" %} | |
---|---|---|---|
{{item.product_name}} | {{ item.unit_price }} | {{item.quantity}} | {{item.line_subtotal }} |
{{ item_extra.label }} | {{ item_extra.value }} | ||
{% trans "Line Total" %}: | {{item.line_total }} | ||
{% trans "Order Subtotal" %} | {{order.order_subtotal }} | ||
{{ extra_price_field.label }} | {{ extra_price_field.value }} | ||
{% trans "Order Total" %} | {{order.order_total}} |
{{ extra_info.text }}
{% endfor %}