{% extends 'TdbBaseBundle::layout.html.twig' %} {% block title %}Carnet d'adresse{% endblock %} {% block body %}

{{ client.nom }} {{ client.prenom }} {{ client.organisation }}

{{ client.nom }} {{ client.prenom }} {{ client.organisation }}
{{ client.adresse |nl2br }}
Tel: {{ client.telephone }}
{{ client.nom }} {{ client.prenom }} {{ client.organisation }}
{{ client.email }}
{{ client.commentaire|raw }}
{% if is_granted('ROLE_CLIENT_ADMIN') %} Modifier la fiche{% endif %}
{% if is_granted('ROLE_PRESTA_USER') %}

Prestations associées

{% if is_granted('ROLE_PRESTA_ADMIN') %} Créer une prestation{% endif %} {% for prestation in client.prestations %} {% endfor %}
Prestation Statut
{{ prestation.intitule }} {% if prestation.isTerminee %} {% set cl = 'label-success' %} {% elseif prestation.isEnCours %} {% set cl = 'label-warning' %} {% else %} {% set cl = '' %} {% endif %} {{ prestation.statut | capitalize }}
{% endif %} {% endblock %}