{% extends 'accueil/accueil_admin.html.twig' %} {% block title %}Consultation d'un Instrument{% endblock %} {% block body %}
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 %} |
Aucune image disponible
{% endif %}