{% extends 'base.html.twig' %} {% block title %}Projets{% endblock %} {% block body %}

Projets

Nouveau Projet
{% for projet in projets %} {% else %} {% endfor %}
Id Nom Statut Date lancement Date clĂ´ture Commentaire Actions
{{ projet.id }} {{ projet.nom }} {% 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 %} {{ projet.dateLancement ? projet.dateLancement|date('d/m/Y') : '-' }} {{ projet.dateCloture ? projet.dateCloture|date('d/m/Y') : '-' }} {{ projet.commentaire|default('')|slice(0, 50) }}{% if projet.commentaire|length > 50 %}...{% endif %} Voir Modifier
Aucun projet trouvé
{% endblock %}