2020-07-28 16:11:53 +02:00
|
|
|
{% block body %}
|
2020-07-29 10:59:11 +02:00
|
|
|
Tâche;Astr.Act;H.Supp;Utilisateur;Début;Fin;Durée;Description;
|
2020-07-28 16:11:53 +02:00
|
|
|
{% for timer in timers %}
|
2020-07-29 10:59:11 +02:00
|
|
|
{{timer.taskname}};{{timer.activepenalty}};{{timer.additionalhour}};{{timer.user}};{{timer.start|date("d/m/Y H:i")}};{{timer.end|date("d/m/Y H:i")}};{{timer.duration|date("H:i")}};{{timer.description}};
|
2020-07-28 16:11:53 +02:00
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|