{% extends 'base.html.twig' %} {% block title %}Consulter un instrument{% endblock %} {% block body %}

Fiche de l'instrument : {{ instrument.nom }}

{% if is_granted('ROLE_ADMIN') %} {% endif %}
{% for couleur in instrument.couleurs %}{% endfor %}
Nom : {{instrument.type.libelle}} : {{instrument.Nom}}{% set photo = 'img/' ~ instrument.type.libelle ~ '.jpg' %}{{ instrument.type.classe.libelle ~
Marque : {{instrument.marque.libelle}}
numéro de série : {{instrument.numSerie}}
Date d'achat : {{instrument.dateAchat|date("d/m/Y")}}
Prix d'achat : {{instrument.prixAchat}} €
Utilisation : {{instrument.utilisation}}
Couleurs :{{ couleur.nom | default('N/A') }}

{% if is_granted('ROLE_ADMIN') %}

Liste des interventions de l'instrument : {{ instrument.nom }}

{% if is_granted('ROLE_ADMIN') %}
{% endif %}
{% if is_granted('ROLE_ADMIN') %} {% endif %} {% for intervention in instrument.interventions %} {% if is_granted('ROLE_ADMIN') %} {% endif %} {% else %} {% endfor %}
DATE
DE DEBUT
DATE
DE FIN
PROFESSIONNEL DESCRIPTIF PRIXACTION
{{ intervention.dateDebut|date("d/m/Y") }} {{ intervention.dateFin|date("d/m/Y") }} {{ intervention.professionnel.nom }}
{{ intervention.professionnel.numRue }} {{ intervention.professionnel.rue }}
{{ intervention.professionnel.copos }} {{ intervention.professionnel.ville }}
{{ intervention.descriptif }} {{ intervention.prix }} €✏️
Aucune intervention n'a été trouvé.
{% endif %}


{% endblock %}