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

Liste des instruments

{% if is_granted('ROLE_GEST') %} Ajouter un instrument {% endif %} {% for i in pInstrument %} {% else %} {% endfor %}
Numéro de Série Type d'Instrument Actions
{{ i.numSerie }} {% if i.typeinstrument is not null %} {{ i.typeinstrument.libelle }} {% else %} Non défini {% endif %} Consulter {% if is_granted('ROLE_GEST') %} Modifier {% endif %} {% if is_granted('ROLE_ADMIN') %} Supprimer {% endif %}
Aucun instrument n'a été trouvé.
{% endblock %}