{% if contacts %}
{% for contact in contacts %}
{% if contact.name %}
{{ contact.name }}
{% else %}
{% i18n "Contact" %}
{% endif %}
  {% if contact.emails %}
  
   
   | {% for email in contact.emails %}
      {{ email.email }}{% if not forloop.last %}, {% endif %}
   {% endfor %} | 
  {% endif %}
  {% if contact.organization %}
  
   
   | {{ contact.organization }} | 
  {% endif %}
  {% if contact.url.url %}
  
   
   | {{ contact.url.url }} | 
  {% endif %}
  {% if contact.birthday %}
  
   
   | {{ contact.formattedBirthday }} | 
  {% endif %}
  {% if contact.note %}
  
   
   | {{ contact.note }} | 
  {% endif %}
{% endfor %}
{% endif %}