{% load currency_filters %}{% for product in products %}
{% if product.images.all %} {{ product.name }} {% elif product.image %} {{ product.name }} {% endif %} {% with discount=product.get_active_discount %} {% if discount %}
{% if discount.discount_type == 'percentage' %} {{ discount.discount_value }}% OFF {% else %} ${{ discount.discount_value }} OFF {% endif %}
{% endif %} {% endwith %}
{{ product.name }}
{% if product.allow_customer_offer %} Offer Price {% endif %}
{% with discount=product.get_active_discount %} {% if discount %}
{{ currency_symbol }}{{ product.price|convert_currency:currency_rate|floatformat:2 }} {{ currency_symbol }}{{ product.get_discounted_price|convert_currency:currency_rate|floatformat:2 }} Save {{ currency_symbol }}{{ product.get_discount_amount|convert_currency:currency_rate|floatformat:2 }}
{% else %}

{{ currency_symbol }}{% load currency_filters %}{{ product.price|convert_currency:currency_rate|floatformat:2 }}

{% endif %} {% endwith %}
{% for i in "12345" %} {% endfor %} ({{ product.average_rating|floatformat:1 }}) • {{ product.rating_count }} reviews
{{ product.stock }} left {{ product.quantity_sold|default:0 }} sold
View Details {% if product.allow_customer_offer %} Make Offer {% endif %}
{% endfor %} {% if not products %}

No products found matching your search.

{% endif %}