{% load i18n %}
| {% trans "Product" %} | {% trans "Price" %} | {% trans "Qty" %} | {% trans "Sum" %} |
|---|---|---|---|
|
{{ item.product.name }}
{{ item.product.articul }} {% if item.product.has_variations %} / {{ item.product.selected_variation.name }}{% endif %} |
{{ item.product.get_fprice }} | {{ item.quantity }} | {{ item.total_fprice }} |
| {% trans "Price" %}: | {{ cart.total_fprice }} | ||
| {% trans "Delivery" %}: | {{ cart.delivery_fprice }} | ||
| {% trans "Total price" %}: | {{ cart.total_fprice_with_delivery }} | ||