{% extends 'accueil/accueil_admin.html.twig' %} {% block title %}Consultation d'un Instrument{% endblock %} {% block body %}

PAGE DE CONSULTATION D'UN INSTRUMENT

Date d'achat : {{ instrument.dateAchat|date('d-M-y') }}
Prix Achat : {{ instrument.prixAchat }}€
Marque : {% if instrument.marque is not null %} {{ instrument.marque.libelle }} {% else %} / {% endif %}
Modèle : {% if instrument.modele is not null %} {{ instrument.modele.nom }} {% else %} / {% endif %}
Numéro de Série : {{ instrument.numSerie }}
Couleur : {% if instrument.couleur is not null %} {{ instrument.couleur.libelle }} {% else %} / {% endif %}
Utilisé ? : {{ instrument.utilisation == 1 ? 'Oui' : 'Non' }}

Type d'instrument : {% if instrument.TypeInstrument is not null %} {{ instrument.TypeInstrument.libelle }} {% else %} / {% endif %}

Interventions

{% for intervention in instrument.getIntervention() %} {% endfor %}
Date Début Date Fin Professionnel Descriptif Prix Interaction
{{ intervention.id }} {{ intervention.dateDebut|date('d/m/Y') }} {{ intervention.dateFin|date('d/m/Y') }} Information Indisponible {{ intervention.descriptif }} {{ intervention.prix }}€

Accessoires

{% for accessoire in instrument.getAccessoire() %} {% endfor %}
Libelle Interaction
{{ accessoire.id }} {{ accessoire.libelle }}
{% if instrument.cheminImage %} Image de l'instrument {% else %}

Aucune image disponible

{% endif %}

{% endblock %}