export journée pleines travaillés

This commit is contained in:
2020-07-31 10:20:33 +02:00
parent c6ade61a08
commit 8dee5b5ce4
7 changed files with 196 additions and 8 deletions

View File

@@ -1,6 +1,7 @@
{% block body %}
Client;Projet;Tâche;Utilisateur;Année;Semaine;Cumul;
{% for project in projects %}
{% if project.weeks_by_task_by_user is defined %}
{% for year,weeks in project.weeks_by_task_by_user %}
{% for week in weeks %}
{% for task in week.tasks%}
@@ -10,5 +11,6 @@ Client;Projet;Tâche;Utilisateur;Année;Semaine;Cumul;
{% endfor %}
{% endfor %}
{% endfor %}
{% endif %}
{% endfor %}
{% endblock %}