{% extends 'base.html.twig' %} {% block title %}Projet - {{ projet.nom }}{% endblock %} {% block body %}
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' }}
{{ projet.commentaire }}
{% else %}Aucun commentaire
{% endif %}| 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 |