{% extends 'base.html.twig' %} {% block title %} {{ professionnel.nom }}{% endblock %} {% block body %}
Profil du professionnel {{ professionnel.nom }}
{% if is_granted('ROLE_ADMIN') %} {% endif %}
{% for metier in professionnel.metier %} {% endfor %}
Nom : {{ professionnel.nom }}
Adresse : {{ professionnel.numRue }} {{ professionnel.rue }}
{{ professionnel.copos }} {{ professionnel.ville }}
Téléphone : {{ professionnel.tel}}
Mail : {{ professionnel.mail }}
metier : {{ metier.libelle | default('N/A') }}

Liste des interventions

{% if is_granted('ROLE_ADMIN') %} {% endif %} {% for intervention in professionnel.interventions %} {% if is_granted('ROLE_ADMIN') %} {% endif %} {% else %} {% endfor %}
DATE
DE DEBUT
DATE
DE FIN
INSTRUMENT : DESCRIPTIF PRIXACTION
{{ intervention.dateDebut|date("d/m/Y") }} {{ intervention.dateFin|date("d/m/Y") }} {{ intervention.instrument.nom }} {{ intervention.descriptif }} {{ intervention.prix }} €✏️
Aucune intervention n'a été trouvé.



{% endblock %}