{% set banner_count = 0 %}
{% if shop %}
{% for index,product in shop %}
{% if index in banner_positions %}
{% set banner_count = banner_count + 1 %}
{% endif %}
{% set has_badge = false %}
{% set outlet = false %}
{% if product.local_properties.ONLINE_EXCLUSIVE is defined and product.local_properties.ONLINE_EXCLUSIVE == 1 %}
EXKLUZÍV
{% set has_badge = true %}
{% else %}
{% if product.promotion %}
{{ product.promotion.value | e('html') }}
{% set has_badge = true %}
{% else %}
{% if product.outlet == 1 %}
OUTLET
{% set outlet = true %}
{% elseif product.new %}
Új termék
{% set has_badge = true %}
{% endif %}
{% endif %}
{% if product.sale %}
-{{ product.discount_percent|e('html') }}%
{% set has_badge = true %}
{% endif %}
{% endif %}
{% if product.has_vto_vm %}
Virtuális próba
{% endif %}