{{ product.name|default:'Deleted Product' }}
{{ product.quantity }}
{% if product.currency == "INR" %}₹
{% elif product.currency == "USD" %}$
{% elif product.currency == "EUR" %}€
{% elif product.currency == "JPY" %}¥
{% else %}{{ product.currency }}
{% endif %}
{{ product.price }}