{% block title %}{{ 'e-Music : Consulter mon profil' }}{% endblock %} {% extends 'base.html.twig' %} {% block stylesheets %}{% endblock %} {% block body %}
  • {% if isInIntervention == null %} Disponible en prêt {% else %} Indisponible (en intervention) {% endif %}
  • {{instrument.typeIntrument.libelle}}

    {{instrument.marque.libelle}}
  • Date d'achat : {{instrument.dateAchat.format('d/m/Y')}}
  • Prix d'achat : {{instrument.prixAchat}}€
  • {{instrument.typeIntrument.libelle}}
  • {% for c in couleursInstrument %}{{c.libelle}}{% endfor %}
{% set interventionNum = 0 %} {% for t in interInstrument %} {% set interventionNum = interventionNum + 1 %} {% endfor %}
Intervention(s)
Date début Date fin Professionnel Travaux effectués Prix
{{ interventionNum }} {{t.date_debut|date("d/m/Y")}} {{t.date_fin|date("d/m/Y")}} {{t.libelle_pro}} {{t.travaux_effectues}} {{t.prix}}€

Accessoires de l'instrument

    {% for a in accessoireInstrument %}
  • {{a.libelle}}
  • {% endfor %}

Instruments de la même classe ({% for ci in classeInstrument %}{{ci.libelle}}{% endfor %})

{% endblock %} {% block footer %}{% endblock %}