{% extends "@Flexy/FrontBundle/Themes/" ~ settings.get.assetFolderName|capitalize ~ "/templates/layout.html.twig" %} {% block body %}

Tarifs

{% for categorie in categories %} {% if categorie.parentCategory == null %} {% endif %} {% endfor %}
{% for categorie in categories %} {% if categorie.parentCategory != null %} {% endif %} {% endfor %}
{% for product in products %}
{% set rootVendor = "" %} {% if is_granted('ROLE_VENDOR') %} {% set rootVendor = "/" %} {% endif %} {% set price = product.price %} {% if product.reduction %} {% set price = product.price - product.reduction %} {% endif %}
0 %} data-attribute="true" {% endif %} >
{{product.name}}
{% if product.description|length < 100 %} {{product.description}} {% else %} {{product.description|slice(0,100)}}... {% endif %}
{% if product.reduction %} {{ product.price }} EUR
{{ price }} EUR {% else %} {{ price }} EUR {% endif %}
{% endfor %}
{% endblock %} {% block javascripts %} {{parent()}} {% endblock %}