{% extends 'base.html.twig' %} {% block title %}Détails du client{% endblock %} {% block body %}

Détails de {{ client.nom }}

Informations générales
  • Nom: {{ client.nom }}
  • Adresse 1: {{ client.adresse1 }}
  • {% if client.adresse2 is not null %}
  • Adresse 2: {{ client.adresse2 }}
  • {% endif %}
  • Code Postal: {{ client.codePostal }}
  • Ville: {{ client.ville }}
  • Pays: {{ client.pays }}
  • Téléphone: {{ client.telephone }}
  • Email: {{ client.email }}
{% if client.adresseFacturation %}
Adresse de facturation

{{ client.adresseFacturation }}
{{ client.adresseFacturation2 }}

{{ client.codePostalFacturation }}

{{ client.villeFacturation }}

{{ client.paysFacturation }}

{% endif %}

Contacts

{% for contact in client.contactsClients %} {% if contact.dateDelete is null %} {% endif %} {% endfor %}
Nom Prénom Email Téléphone
{{ contact.nom }} {{ contact.prenom }} {{ contact.email }} {{ contact.telephone }}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}