{% extends 'base.html.twig' %} {% block title %}Projet - {{ projet.nom }}{% endblock %} {% block body %}

{{ projet.nom }}

Modifier Retour à la liste
Informations générales

ID : {{ projet.id }}

Nom : {{ projet.nom }}

Statut : {% set statutClass = { 'en_attente': 'warning', 'en_cours': 'info', 'termine': 'success', 'annule': 'danger' } %} {% for label, value in projet.getStatutChoices() %} {% if value == projet.statut %}{{ label }}{% endif %} {% endfor %}

Date de lancement : {{ projet.dateLancement ? projet.dateLancement|date('d/m/Y') : 'Non définie' }}

Date de clôture : {{ projet.dateCloture ? projet.dateCloture|date('d/m/Y') : 'Non définie' }}

Commentaire
{% if projet.commentaire %}

{{ projet.commentaire }}

{% else %}

Aucun commentaire

{% endif %}
{% if projet.contributions|length > 0 %}
Contributions ({{ projet.contributions|length }})
{% for contribution in projet.contributions %} {% endfor %}
Membre Date Durée Commentaire Actions
{{ contribution.membre }} {{ contribution.dateContribution|date('d/m/Y') }} {{ contribution.dureeFormatee }} {{ contribution.commentaire|default('')|slice(0, 30) }}{% if contribution.commentaire|length > 30 %}...{% endif %} Voir
{% endif %} {% endblock %}