{% for c in contacts | slice(0,100) %} {% endfor %}
Active Statut Stade Entreprise Nom Prénom Cp Ville Tel (p) Tel (b) Priorité
{% include 'contact/_toggle.html.twig' with {'contact': c} %} {{ c.statut ? c.statut.statut | capitalize }} {{ c.stade ? c.stade.name }} {{ c.entreprise ? c.entreprise |upper}} {{ c.nom ? c.nom |upper }} {{ c.prenom ? c.prenom | capitalize }} {% if c.adresses.snapshot %} {% for a in c.adresses.snapshot %} {{ a.codePostal ? a.codePostal }} {% endfor %} {% endif %} {% if c.adresses.snapshot %} {% for a in c.adresses.snapshot %} {{ a.ville ? a.ville }} {% endfor %} {% endif %} {% if c.telephones.snapshot %} {% for t in c.telephones.snapshot %} {% if t.statut.statut == "Mobile" %} {{ t.number }} {% endif %} {% endfor %} {% endif %}

{% if c.telephones.snapshot %} {% for t in c.telephones.snapshot %} {% if t.statut.statut == "fixe" %} {{ t.number }} {% endif %} {% endfor %} {% endif %}

{{ c.priorite ? c.priorite.name}}