{% extends 'base.html.twig' %} {% block title %}{{ titlePage }}{% endblock %} {% block body %}

Budget

{{ total|number_format(2, ',', ' ') }}
{% if articles is empty %}

Aucun article pour l'instant.
Appuyez sur + pour commencer.

{% else %}
Nom Qté Prix Obs Actions
{% for article in articles %}
{{ article.nom|capitalize }} {{ article.qte }} {{ article.prix|number_format(2, ',', ' ') }} € {{ article.obs ?: '—' }}
{% endfor %}
{% endif %}
{% endblock %}