{% load price_filters %}
| ردیف | نام محصول | تنوع | تعداد | قیمت واحد | جمع | تخفیف محصول | تخفیف ویژه | قیمت نهایی |
|---|---|---|---|---|---|---|---|---|
| {{ forloop.counter }} | {{ item_data.item.product.product.name }} | {{ item_data.item.product.title }} | {{ item_data.item.quantity }} | {{ item_data.unit_price|price_format }} تومان | {{ item_data.price_before_discount|price_format }} تومان | {% if item_data.item.discount_percent > 0 %} {{ item_data.item.discount_percent }}% ({{ item_data.discount_amount|price_format }} تومان) {% else %} --- {% endif %} | {% if item_data.item.special_discount_amount > 0 %} {{ item_data.item.special_discount_amount|price_format }} تومان {% else %} --- {% endif %} | {{ item_data.final_price|price_format }} تومان |