{% extends 'base.html.twig' %} {% block title %}Contact {{contact.name}}{% endblock %} {% block title_page %}Contact : {{contact.name}}{% endblock %} {% block container_start %}

{% trans %}Informations contact{% endtrans %}

{% if is_granted("ROLE_EDIT_CONTACT") %} {% endif %} {% if is_granted("ROLE_DELETE_CONTACT") %} {% endif %}
Identité :
{{contact.name}} {{contact.firstName}}
Type :
{{contact.type.name}}
{% if contact.customer.company is not null %}
Client :
{{contact.customer.company}}
{% endif %}
Adresse :
{{contact.address}}
Complément adresse :
{{contact.additionalAddress}}
Code postal :
{{contact.zipcode}}
Ville :
{{contact.city}}
Création :
{{contact.createdAt | DateOrNull}}
Dernière MAJ :
{{contact.updatedAt | DateOrNull}}
Etat :
{{contact.state.name}}
Téléphone :
{% if contact.phone1 is not null %} {{contact.phone1}} {% else %} - {% endif %}
Téléphone 2 :
{% if contact.phone2 is not null %} {{contact.phone2}} {% else %} - {% endif %}
Fax :
{% if contact.fax is not null %} {{contact.fax}} {% else %} - {% endif %}
Email :
{% if contact.email is not null %} {{contact.email}} {% else %} - {% endif %}
Markers
Maps shows location of the place

Données cartographiques
Données cartographiques ©2020
Données cartographiquesDonnées cartographiques ©2020
Données cartographiques ©2020
200 m 
Impossible de charger Google Maps correctement sur cette page.
Ce site Web vous appartient ?

{% trans %}Commentaire{% endtrans %}

{% if contact.comment is empty %} - {% else %} {{contact.comment|capitalize}} {% endif %}

{% if is_granted("ROLE_VIEW_LIST_SITE") %}
{#

Fixed Header Table

#}
{% set i = 1 %} {% for site in contact.sites %} {% set i = i + 1 %} {% endfor %}
# Nom Adresse Code postal Ville Pose Dépose
{{i}} {{site.name}} {{site.address}} {{site.zipcode}} {{site.city}} {{site.installedAt | date("d/m/Y")}} {{site.uninstalledAt | date("d/m/Y")}}
{% endif %}
{#
Print
#}
{% endblock %}