Vins en pichet/bouteille
Blanc
{% for vin in vinsPB %}
{% if vin.type == 'Blanc' %}
{% endif %}
{% endfor %}
{{ vin.name }} {{ vin.brand }}
{{ vin.description }}
{% for pq in vin.priceQuantity %}
{{ pq.quantity }}
{{ pq.price|replace({'.' : ','}) }} €
{% endfor %}
Rouge
{% for vin in vinsPB %}
{% if vin.type == 'Rouge' %}
{% endif %}
{% endfor %}
{{ vin.name }} {{ vin.brand }}
{{ vin.description }}
{% for pq in vin.priceQuantity %}
{{ pq.quantity }}
{{ pq.price|replace({'.' : ','}) }} €
{% endfor %}
Rosé
{% for vin in vinsPB %}
{% if vin.type == 'Rosé' %}
{% endif %}
{% endfor %}
{{ vin.name }} {{ vin.brand }}
{{ vin.description }}
{% for pq in vin.priceQuantity %}
{{ pq.quantity }}
{{ pq.price|replace({'.' : ','}) }} €
{% endfor %}
Vins au verre
Blanc
{% for vinV in vinsV %}
{% if vinV.type == 'Blanc' %}
{% endif %}
{% endfor %}
{{ vinV.name }} {{ vinV.brand }}
{{ vinV.description }}
{{ vinV.quantity }}
{{ vinV.price|replace({'.' : ','}) }} €
Rouge
{% for vinV in vinsV %}
{% if vinV.type == 'Rouge' %}
{% endif %}
{% endfor %}
{{ vinV.name }} {{ vinV.brand }}
{{ vinV.description }}
{{ vinV.quantity }}
{{ vinV.price|replace({'.' : ','}) }} €
Rosé
{% for vinV in vinsV %}
{% if vinV.type == 'Rosé' %}
{% endif %}
{% endfor %}
{{ vinV.name }} {{ vinV.brand }}
{{ vinV.description }}
{{ vinV.quantity }}
{{ vinV.price|replace({'.' : ','}) }} €