{% load i18n %}
| {% trans 'Product' %} | {% trans 'Unit price' %} | {% trans 'Quantity' %} | {% trans 'Price' %} |
|---|---|---|---|
| {{ item.product.name }} {% if item.package %}/ {{ item.package.name }}{% endif %} | {{ item.get_unit_price }} | {{ item.quantity }} | {{ item.get_price }} |
| {% trans 'Subtotal' %} | {{ cart.get_price }} | ||
| {{ order.delivery_method.name }} | {{ order.delivery_method.get_price }} | ||
| {{ order.payment_method.name }} | {{ order.payment_method.get_price }} | ||
| {% trans 'Total' %} | {{ order.get_price }} | ||