8 lines
281 B
Twig
8 lines
281 B
Twig
{% block body %}
|
|
Client;Projet;Proposition;Ref;Qt;PU;Total;
|
|
{% for project in projects %}
|
|
{% for offer in project.offers %}
|
|
{{ project.customer }};{{project.name}};{{offer.name}};{{offer.ref}};{{offer.quantity}};{{offer.pu}};{{offer.total}}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endblock %} |