{% extends 'base.html.twig' %} {% block title %}Liste des interventions{% endblock %} {% block body %}

Liste des interventions

{% if is_granted('ROLE_GEST') %} Ajouter une intervention {% endif %} {% for i in pInterventions %} {% else %} {% endfor %}
Descriptif Prix Quotité Début de l'intervention Fin de l'intervention Actions
{{ i.descriptif }} {{ i.prix }} {{ i.quotite }} {{ i.dateDebut|date("d/m/Y") }} {{ i.dateFin|date("d/m/Y") }} Consulter {% if is_granted('ROLE_GEST') %} Modifier {% endif %} {% if is_granted('ROLE_ADMIN') %} Supprimer {% endif %}
Aucune intervention trouvée.
{% endblock %}