{% extends 'base.html.twig' %} {% block title %}Société {{company.name}}{% endblock %} {% block title_page %}Société : {{company.name}}{% endblock %} {% block container_start %}

{% if company.filename %} image-product {% else %} {% endif %}

{% trans %}Informations société{% endtrans %}

{% if is_granted("ROLE_EDIT_COMPANY") %} {% endif %} {% if is_granted("ROLE_DELETE_COMPANY") %} {% endif %}
Id :
{{ company.id }}
Name :
{{company.name}}
Adresse :
{{company.address}}
Complément adresse :
{{company.additionalAddress}}
Code postal :
{{company.zipcode}}
Ville :
{{company.city}}
Pays :
{{company.country}}
Téléphone :
{% if company.phone1 is not null %} {{company.phone1}} {% else %} - {% endif %}
Téléphone 2 :
{% if company.phone2 is not null %} {{company.phone2}} {% else %} - {% endif %}
Fax :
{% if company.fax is not null %} {{company.fax}} {% else %} - {% endif %}
Email :
{% if company.email is not null %} {{company.email}} {% else %} - {% endif %}
Création :
{{ company.createdAt ? company.createdAt|date('Y-m-d H:i:s') : '' }}
Dernière MAJ :
{{ company.updatedAt ? company.updatedAt|date('Y-m-d H:i:s') : '' }}
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 company.comment is empty %} - {% else %} {{company.comment|capitalize}} {% endif %}

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

Fixed Header Table

#}
{% set i = 1 %} {% for user in company.users %} {% set i = i + 1 %} {% endfor %}
# Nom Prénom Email
{{i}} {{user.name}} {{user.firstName}} {{user.email}}
{% endif %} {% if is_granted("ROLE_VIEW_LIST_PRODUCT_COMPANY") %}
{#

Fixed Header Table

#}
{% set i = 1 %} {% for product in company.products %} {% set i = i + 1 %} {% endfor %}
# Référence Nom
{{i}} {% if product.filename %} image-product {% endif %} {{product.reference}} {{product.name}}
{% endif %}
{#
Print
#}
{% endblock %}