{% if cartes|length > 0 %}

{% trans %}Nos cartes{% endtrans %}

{% for carte in cartes %} {% if carte.valid %}
{{carte.translations[app.request.locale].getName | default('')}}
{{carte.getLabel05}}
{{carte.getLabel04}}
{{carte.getLabel03}}
{{carte.getLabel02}}
{{carte.getLabel01}}
{% for item in carte.getCarteItems %} {% if item.valid %}
{% if item.image != null %} {% else %} {% endif %}
{{item.translations[app.request.locale].getName | default('') | raw}}
{{item.translations[app.request.locale].getContent | default('') | raw}}
{{carte.getLabel05}} {{item.getPrice05}} {% if item.getPrice05 %}€{% endif %}
{{carte.getLabel04}} {{item.getPrice04}} {% if item.getPrice04 %}€{% endif %}
{{carte.getLabel03}} {{item.getPrice03}} {% if item.getPrice03 %}€{% endif %}
{{carte.getLabel02}} {{item.getPrice02}} {% if item.getPrice02 %}€{% endif %}
{{carte.getLabel01}} {{item.getPrice01}} {% if item.getPrice01 %}€{% endif %}
{% endif %} {% endfor %} {% endif %} {% endfor %}
{% endif %}