{% extends 'base.html.twig' %} {% block title %}displayClaims{% endblock %} {% block body %} {% include '/loader/loader.html.twig' %}
{% for message in app.flashes('success') %}
{{ message }}
{% endfor %} {% for message in app.flashes('warning') %}
{{ message }}
{% endfor %}

Contact

Votre conseiller

{{ mission.missionparticipant.getGestionnary().username }}
{{ mission.missionparticipant.getGestionnary().company.place.address }}
{{ mission.missionparticipant.getGestionnary().company.place.postcode ~ ' ' ~ mission.missionparticipant.getGestionnary().company.place.city }}
{{ mission.missionparticipant.getGestionnary().mobile }}
{{ mission.missionparticipant.getGestionnary().email }}
{% if mission.missionparticipant.getGestionnary().userPicture == null %}
{{ mission.missionparticipant.getGestionnary().lastname|first ~ mission.missionparticipant.getGestionnary().firstname|first }}
{% else %} {% endif %}

Votre *type client*

{{ mission.delegate.company.name }}
{{ mission.delegate.company.place.address }}
{{ mission.delegate.company.place.postcode ~ ' ' ~ mission.missionparticipant.getGestionnary().company.place.city }}
{{ mission.delegate.company.phone }}
{{ mission.delegate.company.email }}

Expert

{{ mission.expert.username }}
{{ mission.expert.company.place.address }}
{{ mission.expert.company.place.postcode ~ ' ' ~ mission.missionparticipant.getGestionnary().company.place.city }}
{{ mission.expert.mobile }}
{{ mission.expert.email }}
{% if mission.expert.userPicture == null %}
{{ mission.expert.lastname|first ~ mission.expert.firstname|first }}
{% else %} {% endif %}

Entreprise du Bâtiment

{% if mission.assignment|length == 0 %}
Aucune intervention pour le moment
{% endif %} {% for item in mission.assignment %}
{{ item.agency.company.name }}
{{ item.agency.place.address }}
{{ item.agency.place.postcode ~ ' ' ~ item.agency.place.city }}
{{ item.agency.phone }}
{{ item.agency.email }}
{% if item.agency.company.logo == null %}
{% if ' ' in item.agency.company.name %} {{ item.agency.company.name|split(' ')[0]|first }} {{ item.agency.company.name|split(' ')[1]|first }} {% else %} {{ item.agency.company.name|first }} {% endif %}
{% else %} {% endif %}
{% endfor %}
{% endblock %} {% block javascripts %} {% endblock %}