{% load currency_filters i18n_filters i18n static %} {% for product in products %}
{% if product.images.all %} {{ product|translate_model_field:'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 {% 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 %}
{{ product.stock }} {{ product.quantity_sold|default:0 }}
View Details {% comment %} {% if product.allow_customer_offer %} Offer {% endif %} {% endcomment %} {% comment %} {% endcomment %}
{% endfor %} {% if not products %}

{% trans "No products found matching your search." %}

{% endif %}