{% if is_granted('ROLE_GESTION') %}
|
{% endif %}
{% if pointage.Date is defined and pointage.Date is not null %}
{{ pointage.Date|date('d/m/Y') }}
{% endif %}
|
{% if pointage.Projet.Client.Nom is defined %}
{{ pointage.Projet.Client.Nom }}
{% endif %}
|
{% if pointage.Projet.Nom is defined %}
{{ pointage.Projet.Nom }}
{% endif %}
|
{% if pointage.Tache.Nom is defined %}
{{ pointage.Tache.Nom }}
{% endif %}
|
{% if pointage.User.Nom is defined %}
{{ pointage.User.Nom }} {{ pointage.User.Prenom }}
{% endif %}
|
{% if pointage.TempsRealise is defined %}
{{ pointage.TempsRealise|date('H\\hi') }} ({{ pointage.HeureDebut|date('H\\hi') }}-{{ pointage.HeureFin|date('H\\hi') }})
{% endif %}
|
{% endfor %}