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

Information sur l'intervention {{ intervention.id }}

L'id de l'intervention : {{intervention.id}}
La date de début de l'intervention : {{intervention.datedebut|date("d/m/Y")}}
La date de fin de l'intervention : {{intervention.datefin|date("d/m/Y")}}
Le descriptif de l'intervention : {{intervention.descriptif}}
Le prix : {{intervention.prix}}
Le professionnel : {{ intervention.professionnel ? intervention.professionnel.nom : 'N/A' }}
{% endblock %}