{% load store_extras %}
{% for product in products %}
{% if product.discount %} {{currency}} {{product.price}} {{product.price|calculate_discount:product.discount.percent}} / {{product.unit}} {{product.discount.percent}}% off {% else %} {{currency}} {{product.price}} / {{product.unit}} {% endif %}
{{product.product.title|lower|title}}

{% if product.keyvalues.all %}

{% for kv in product.keyvalues.all %} {% endfor %}
{{kv.key.key|lower|title}} {{kv.value.value|lower|title}}
{% endif %}
{% if product.info|length > 200 %} {{product.info|truncatechars:200}} more
{{product.product.title|lower|title}}
{{product.info}}
{% else %} {{product.info}} {% endif %}

{% endfor %}