{% extends 'base.html.twig' %} {% block title %}Company{% endblock %} {% block body %} {% include '/loader/loader.html.twig' %}
{% if agency.company.logo == null %}
{% if ' ' in agency.company.name %} {{ agency.company.name|split(' ')[0]|first }} {{ agency.company.name|split(' ')[agency.company.name|split(' ')|length - 1]|first }} {% else %} {{ agency.company.name|first }} {% endif %}
{% else %} {% endif %} {{ agency.company.name }} - {{ agency.name }}
Informations générales de l'entreprise
Adresse : {{ agency.place.fullAddress }}
Secteur : {{ agency.sbZone.zone }}
Téléphone : {{ agency.phone }}
Statut : {{ agency.company.legalstatut }}
SIREN : {{ agency.company.siren }}

Contact de l'entreprise:
Nom : {{ agency.agencyParticipants[0].user.lastname }}
Prénom : {{ agency.agencyParticipants[0].user.firstname }}
Email : {{ agency.agencyParticipants[0].user.email }}
Téléphone : {{ agency.agencyParticipants[0].user.phone }}
Mobile : {{ agency.agencyParticipants[0].user.mobile }}

Entreprise spécialisé dans les domaines suivants :
{% for activity in agency.getCompanyActivities() %} {{ activity.activity.name }} {{ not loop.last ? ',' }} {% endfor %}

Intervient dans les secteurs suivants:
{% for zone in agency.getInterventionZoneCode() %} {{ zone.city }} ({{ zone.postcode }}) {{ not loop.last ? ',' }} {% endfor %}
{% endblock %} {% block javascripts %} {% endblock %}