{% extends "base.html.twig" %} {% block title %}Fiche de l'instrument {{instrument.intitule}}{% endblock %} {% block contenu %}

Fiche {{instrument.intitule}} ({{instrument.typeInstrument.libelle}})


{% if is_granted('IS_AUTHENTICATED_FULLY')%} {% if app.user.email == "admin@admin.com"%} Modifier {% endif %} {% endif %} {% if instrument.Utilisation == null %} {% else %}
Date d'achat : {{instrument.dateAchat|date('d/m/20y')}}
Prix d'achat : {{instrument.prixAchat}} €
Marque : {{instrument.marqueInstrument.libelle}}
Modele : {{instrument.modeleInstrument.libelle}}
Numéro de série : {{instrument.numeroSerie}}
Couleur dominante : {{instrument.couleur}}
Utilisation : Cet instrument n'est pas destiné a être prêté{{instrument.Utilisation}}
{% if is_granted('IS_AUTHENTICATED_FULLY')%} {% if app.user.email == "admin@admin.com" %} Voir la liste des prets
Ajouter un prêt
{% endif %} {% endif %} {% endif %}
Classe de l'instrument : {{instrument.typeInstrument.classeInstrument.libelle}}

Liste des interventions

{% for c in instrument.contratPret %} {% for i in c.interPrets %} {% else %}

il n'y a pas eu d'interventions

{% endfor %} {% endfor %}
Date de débutDate de finProfessionelTravaux effectuésPrix
{{ i.intervention.dateDebut|date("d-m-20y")}} {{ i.intervention.dateFin|date("d-m-20y")}} {{ i.intervention.professionel.nom}}
{{i.intervention.professionel.numRue}} {{i.intervention.professionel.rue}}
{{i.intervention.professionel.codePostal}} {{i.intervention.professionel.ville}}
{{i.intervention.descriptif}} {{i.intervention.prix}}€
{% endblock %}