{% load i18n %}
{% trans "Invoice no" %}. {{ order.id }}
{{ order.created|date:"M d, Y" }}
{% trans "Name" %}: {{ order.order_receiver_name }}
{% trans "Email" %}: {{ order.order_email }}
{% trans "Telephone" %}: {{ order.order_telephone }}
{% trans "Postal" %}: {{ order.order_receiver_address_postal }}
{% trans "Address" %}: {{ order.order_receiver_address }}
{% trans "Products" %} | {% trans "Price" %} | {% trans "Quantity" %} | {% trans "Total" %} |
---|---|---|---|
{{ item.product.name }} | {{ item.price }} | {{ item.quantity }} | {{ item.get_cost }} |
{% trans "Total" %} | ${{ order.get_total_cost }} |