{% extends 'base.html.twig' %} {% block title %}Consultation d'un instrument{% endblock %} {% block body %}

Consultation d'un instrument

ID : {{ instrument.id }} {% set photo = 'instrument/' ~ instrument.id ~ '.jpg' %} Photo de {{ instrument.numSerie }}
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 %}

Intervention

{% if instrument.interventions|length > 0 %} {% for intervention in instrument.interventions %} {% endfor %} {% else %} {% 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
{% endblock %}