{% if model.model matches '/polycomvvx/' %}
{{ contacts[0].sns[0] }}
{% if contacts[0].sns|length == 1 %}
| Nom |
{{ contacts[0].sns[0] }} |
{% else %}
{% for x in contacts[0].sns %}
{% if loop.first %}
| Nom |
{% endif %}
{{ x }} |
{% endfor %}
{% endif %}
{% for x in contacts[0].givenNames %}
{% if loop.first %}
| Prénom |
{% endif %}
{{ x }} |
{% endfor %}
{% if contacts[0].displayName is not empty %}
| Nom d'usage |
{{ contacts[0].displayName }} |
{% endif %}
{% for item in contacts %}
{% if loop.first %}
| Numéros |
{% endif %}
{{ item.number is defined ? item.number : '' }} |
{% endfor %}
| Compagnie |
{{ userProvision.service.company.name }} |
| Service |
{{ userProvision.service.name }} |
{% else %}
{{ contacts[0].sns[0] }}
{% if contacts[0].sns|length == 1 %}
| Nom |
{{ contacts[0].sns[0] }} |
{% else %}
{% for x in contacts[0].sns %}
{% if loop.first %}
| Nom |
{% else %}
|
{% endif %}
{{ x }} |
{% endfor %}
{% endif %}
{% for x in contacts[0].givenNames %}
{% if loop.first %}
| Prénom |
{% else %}
|
{% endif %}
{{ x }} |
{% endfor %}
{% if contacts[0].displayName is not empty %}
| Nom d'usage |
{{ contacts[0].displayName }} |
{% endif %}
{% for item in contacts %}
{% if loop.first %}
| Numéros |
{% else %}
|
{% endif %}
{{ item.number is defined ? item.number : '' }} |
{% endfor %}
| Compagnie |
{{ userProvision.service.company.name }} |
| Service |
{{ userProvision.service.name }} |
{% endif %}