{% extends 'base.html.twig' %} {% block title %}Fiche Bureau{% endblock %} {% block body %}

Fiche Bureau - {{ office.name }}

Région {{ office.region }}
Responsables {% for user in office.managers %} {{ user.fullName }} {%- if not loop.last -%}, {%- endif -%} {% endfor %}
Numéro de téléphone {{ office.phoneNumber }}
Adresse mail {{ office.mail }}
Adresse postale {{ office.address | nl2br }}
A propos {{ office.about | nl2br }}
Heures d'ouverture {{ office.openingHours | nl2br }}

Organigramme du bureau {{ office.name }}

{% endblock %} {% block javascripts %} {{ parent() }} {{ encore_entry_script_tags('organisation') }} {% endblock %}