{% extends 'accueil/accueil_uti.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 %} |
N° | Date Début | Date Fin | Professionnel | Descriptif | Prix |
---|---|---|---|---|---|
{{ intervention.id }} | {{ intervention.dateDebut|date('d/m/Y') }} | {{ intervention.dateFin|date('d/m/Y') }} | Information Indisponible | {{ intervention.descriptif }} | {{ intervention.prix }}€ |
N° | Libelle |
---|---|
{{ accessoire.id }} | {{ accessoire.libelle }} |
Aucune image disponible
{% endif %}