update report csv format
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
{% block body %}
|
||||
Projet;Tâche;Utilisateur;Année;Semaine;Cumul;
|
||||
Client;Projet;Tâche;Utilisateur;Année;Semaine;Cumul;
|
||||
{% for project in projects %}
|
||||
{% for year,weeks in project.weeks_by_task_by_user %}
|
||||
{% for week in weeks %}
|
||||
{% for task in week.tasks%}
|
||||
{% for user in task.users%}
|
||||
{{project.projectname}};{{task.taskname}};{{user.displayname}};{{year}};S{{week.weeknumber}};{{user.cumul|replace({".": ","})}};
|
||||
{{project.customer}};{{project.name}};{{task.taskname}};{{user.displayname}};{{year}};S{{week.weeknumber}};{{user.cumul|replace({".": ","})}};
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
Reference in New Issue
Block a user