{% extends 'base.html.twig' %} {% block title %}Consultation d'un instrument{% endblock %} {% block body %}
ID : | {{ instrument.id }} | {% set photo = 'instrument/' ~ instrument.id ~ '.jpg' %} |
Numéro de Série : | {{ instrument.numSerie }} | |
Date d'Achat : | {% if instrument.dateAchat is not null %} {{ instrument.dateAchat|date("d/m/Y") }} {% else %} Non spécifiée {% endif %} | |
Prix d'achat : | {{instrument.prixAchat}} | |
Utilisation : | {{instrument.utilisation}} | |
Couleur : | {{instrument.couleur}} | |
Type d'Instrument : | {% if instrument.typeinstrument is not null %} {{ instrument.typeinstrument.libelle }} {% else %} Non défini {% endif %} | |
Marque : | {% if instrument.marque is not null %} {{ instrument.marque.libelle }} {% else %} Non définie {% endif %} | |
Modèle : | {% if instrument.modele is not null %} {{ instrument.modele.libelle }} {% else %} Non défini {% endif %} |
Accessoires : |
{% if instrument.accessoires|length > 0 %} {% for accessoire in instrument.accessoires %} {{ accessoire.libelle }} {% if not loop.last %}, {% endif %} {% endfor %} {% else %} Aucun accessoire {% endif %} |
Date Début | Date Fin | Descriptif | Prix | Quotité |
---|---|---|---|---|
{{ intervention.dateDebut ? intervention.dateDebut|date('d/m/Y') : 'Non spécifiée' }} | {{ intervention.dateFin ? intervention.dateFin|date('d/m/Y') : 'Non spécifiée' }} | {{ intervention.descriptif }} | {{ intervention.prix }} € | {{ intervention.quotite }} |
Aucune intervention associée |