{% extends 'base.html.twig' %} {% block title %}Details d'une tâche {% endblock %} {% block body %}
Retour
{#

Tache en détail

#}
Modifer

{{ tache.client }}
Attribué à:
{% for userAttr in tache.usersAttr %} {{ userAttr }} {% endfor %}
{% if tache.client %} {% endif %}
Description:

{{ tache.description }}

{% if tache.image != null %}
task-image
{% endif %}
Status:
{% if tache.Status == "NF" %} {% elseif tache.Status == "EC" %} {% else %} {% endif %}
Urgent:
{% if tache.isUrgent %} Oui {% else %} Non {% endif %}
A facturer:
{% if tache.toCharge %} Oui {% else %} Non {% endif %}
Commentaire:

{{ tache.commentaire }}

Historique:
{% for historique in historiques %} {{ historique.description }}
{% endfor %}
{% endblock %}