{% load static %} {% if products %}
{% for product in products %}
67%
{{ 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 }}
{% endfor %}
{% else %}

No products found.

{% endif %}