{% 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 %}
{% if product.local_properties.ONLINE_EXCLUSIVE is defined and product.local_properties.ONLINE_EXCLUSIVE == 1 %}
EXKLUZIVNÍ
{% set has_badge = true %}
{% else %}
{% if product.promotion %}
{{ product.promotion.value | e('html') }}
{% set has_badge = true %}
{% else %}
{% if product.new %}
Novinka
{% set has_badge = true %}
{% endif %}
{% endif %}
{% if product.sale %}
{{ "%s%% "|format(product.discount_percent,"%") }}AKCE
{% set has_badge = true %}
{% else %}
{% if product.product_group_role == 'OPTICAL_FRAMES' %}
{% if product.ecommerce_active %}
{% if product.brand_slug == 'd-by-d' or product.brand_slug == 'seen' or product.brand_slug == 'unofficial' %}
{{ "Kombinace slevy 20%a 40%" }}
{% else %}
{{ "Sleva %d%s na kompletní brýle"|format(20,"%") }}
{% endif %}
{% set has_badge = true %}
{% endif %}
{% endif %}
{% endif %}
{% endif %}
{% if product.has_vto_vm %}
Vyzkoušet on-line
{% endif %}