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

Les burgers

Vous avez {{ burgers|length }} burger(s)
Nom
Quantité/Taille
Prix
Action
{% for burger in burgers %}
{{ burger.name }}
{% for pq in burger.priceQuantity %} {{ pq.quantity }} {% endfor %}
{% for pq in burger.priceQuantity %} {{ pq.price|replace({'.' : ','}) }} € {% endfor %}
{% endfor %}
{% endblock %}