Sodas
{% for soda in sodas %}
{% endfor %}
{% if soda.logoFilename %}
{% endif %}
{{ soda.quantity }}
{{ soda.price|replace({'.' : ','}) }} €
Eaux
{% for eau in eaux %}
{% endfor %}
{% if eau.logoFilename %}
{% endif %}
{% for pq in eau.priceQuantity %}
{{ pq.quantity }}
{{ pq.price|replace({'.' : ','}) }} €
{% endfor %}
Jus de Fruits
{% for j in jus %}
{% endfor %}
{{ j.name }}
{{ j.price|replace({'.' : ','}) }} €
Sirops
Au choix : Grenade, Menthe, Fraise, Pêche, Framboise, Citron, Pamplemousse rose.
{% for sirop in sirops %}
{% endfor %}
{{ sirop.name }}
{{ sirop.quantity }}
{{ sirop.price|replace({'.' : ','}) }} €