Files
schedule/templates/Export/export_month_charged_days.csv.twig

7 lines
153 B
Twig
Raw Normal View History

2020-12-16 16:33:57 +01:00
{% block body %}
Mois;Jours_facturés;Jour_non_facturés
{% for month, event in events %}
{{month}};{{event.f}};{{event.nf}}
{% endfor %}
{% endblock %}