{% extends 'base.html.twig' %} {% block title %}Consulter un cours!{% endblock %} {% block stylesheets %}{% endblock %} {% block header %}Mon superbe menu{% endblock %} {% block body %}
PAGE DE CONSULTATION D'UN INSTRUMENT
{% for accessoire in instruments.Accessoires %} {% endfor %}
Nom : {{instruments.nom}}
N°Serie : {{instruments.numSerie}} {% set photo = 'img/instrument/' ~ instruments.cheminImage ~ '.jpg' %} {{ instruments.cheminImage }}
Prix d'achat : {{instruments.prixAchat}} €
Utilisation : {{instruments.utilisation}}
Marque : {{instruments.marque.libelle}}
Type : {{instruments.typeInstrument.libelle}}
Couleur(s) :
    {% for couleur in instruments.couleur %}
  • {{ couleur.nom }}
  • {% endfor %}
Accessoire(s)
{{ accessoire.libelle }}
Interventions:
{% for intervention in instruments.Interventions %} {% 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 }} €
{% endblock %} {% block javascripts %}{% endblock %}