7 lines
153 B
Twig
7 lines
153 B
Twig
|
{% block body %}
|
||
|
Mois;Jours_facturés;Jour_non_facturés
|
||
|
{% for month, event in events %}
|
||
|
{{month}};{{event.f}};{{event.nf}}
|
||
|
{% endfor %}
|
||
|
{% endblock %}
|