Ajout d'un export csv hebdomadaire sur les rapports

This commit is contained in:
2020-06-19 11:56:33 +02:00
parent 32c08bcb52
commit 7fbed84998
4 changed files with 151 additions and 47 deletions

View File

@@ -0,0 +1,15 @@
{% block body %}
{% for project in projects %}
{{ project.projectname|raw }}
{% for years in project %}
{% for year,weeks in years %}
{{year}}
;{% for week in weeks %}S{{week.weeknumber}};{% endfor %}
;{% for week in weeks %}{{week.cumul}};{% endfor %}
{% endfor %}
{% endfor %}
{% endfor %}
{% endblock %}