{% extends 'base.html.twig' %} {% block body %}

Inscriptions en attente

{% if inscriptions is not empty %}
{% for inscription in inscriptions %} {% endfor %}
Date de la Formation Produit Département Statut Actions
{{ inscription.laFormation.dateDebut|date('d/m/Y') }} {{ inscription.laFormation.leProduit.libelle }} {{ inscription.laFormation.departement }} {{ inscription.statut == 0 ? 'En attente' : 'Approuvé' }} Valider Refuser
{% else %}
Aucune inscription en attente.
{% endif %}
{% endblock %}