2020-06-19 11:56:33 +02:00
|
|
|
{% block body %}
|
2020-09-22 10:49:43 +02:00
|
|
|
Client;Projet;Tâche;Nature;Utilisateur;Année;Semaine;Cumul;
|
2020-06-19 11:56:33 +02:00
|
|
|
{% for project in projects %}
|
2020-07-31 10:20:33 +02:00
|
|
|
{% if project.weeks_by_task_by_user is defined %}
|
2020-07-28 10:36:44 +02:00
|
|
|
{% for year,weeks in project.weeks_by_task_by_user %}
|
2020-07-27 15:22:16 +02:00
|
|
|
{% for week in weeks %}
|
2020-07-28 10:36:44 +02:00
|
|
|
{% for task in week.tasks%}
|
|
|
|
{% for user in task.users%}
|
2020-09-22 10:49:43 +02:00
|
|
|
{{project.customer}};{{project.name}};{{task.taskname|replace({"&": "et"})}};{{task.nature}};{{user.displayname}};{{year}};S{{week.weeknumber}};{{user.cumul|replace({".": ","})}};
|
2020-07-28 10:36:44 +02:00
|
|
|
{% endfor %}
|
2020-07-27 15:22:16 +02:00
|
|
|
{% endfor %}
|
2020-06-19 11:56:33 +02:00
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
2020-07-31 10:20:33 +02:00
|
|
|
{% endif %}
|
2020-06-19 11:56:33 +02:00
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|