{% extends 'base.html.twig' %} {% block head %} {{ parent() }} {% endblock %} {% block header %} {{ parent() }} {% endblock %} {% block body %}

Instruments

Consultation de l'instrument {{ 'n° ' ~ instrument.id }}

Id : {{ instrument.id }}
Nom : {{ instrument.numSerie }} {% set photo = 'img/instrument/' ~ instrument.cheminImage ~ '.jpg' %} {{ instrument.cheminImage }}
Date d'achat : {{ instrument.dateAchat | date("d/m/Y") }}
Prix d'achat : {{ instrument.prixAchat ~ '€' }}
Utilisation : {{ instrument.utilisation }}
Marque : {{ instrument.marque.libelle }}
Type d'Instrument : {{ instrument.TypeInstrument.libelle }}
Classe Instrument : {{ instrument.TypeInstrument.ClasseInstrument.libelle }}
Couleur :
    {% for couleur in instrument.couleurs %}
  • {{ couleur.Nom }}
  • {% endfor %}
Interventions:
{% for intervention in instrument.Intervention %} {% endfor %}
Date de début : Date de fin : Description : Prix :
{{ intervention.dateDebut|date("d/m/Y") }} {{ intervention.dateFin|date("d/m/Y") }} {{ intervention.descriptif }} {{ intervention.prix }}€
Retour à la liste des instruments
{% endblock %} {% block footer %} {{ parent() }} {% endblock %}