{% extends "admin/base.html.twig" %} {% block title %}Eaux - Administration | La Tour{% endblock %} {% block body %}

Les eaux

Vous avez {{ eaux|length }} eau(x)
Nom
Quantité/Taille
Prix
Action
{% for eau in eaux %}
{% if eau.logoFilename %} {% endif %}
{% for pq in eau.priceQuantity %} {{ pq.quantity }} {% endfor %}
{% for pq in eau.priceQuantity %} {{ pq.price|replace({'.' : ','}) }} € {% endfor %}
{% endfor %}
{% endblock %}