Nouvelle Adresse
{% if obj.adressMails|length <= 0 %}
Pas d'adresse mail connue
{% else %}
{% for mail in obj.adressMails %}
{{ mail.email }}
{% if secure.havePermission(constant('_REMOVE_SERV_GEST_USER', app_const)) %}
Supprimer
{% endif %}
{% endfor %}
{% endif %}
Nouveau numero
{% if obj.adressPhones|length <= 0 %}
Pas d'adresse téléphonique connue
{% else %}
{% for phone in obj.adressPhones %}
{{ phone.phone }}
{% if secure.havePermission(constant('_REMOVE_SERV_GEST_USER', app_const)) %}
Supprimer
{% endif %}
{% endfor %}
{% endif %}