{% if contact.photo %} {{ contact.name }} {% else %} {% endif %}

{{ contact.display_name or contact.name }}

{% if contact.positions %}

{{ contact.positions[0].title or '' }}

{{ contact.positions[0].org or '' }}

{% endif %} {% if contact.relation or contact.priorite or contact.frequence or contact.genre %}
{% if contact.genre %}{% if contact.genre == 'homme' %}♂️{% else %}♀️{% endif %} {{ contact.genre | title }}{% endif %} {% if contact.relation %}{{ contact.relation | title }}{% endif %} {% if contact.priorite %}{{ contact.priorite | title }}{% endif %} {% if contact.frequence %}{{ contact.frequence | title }}{% endif %}
{% endif %}
{% if contact.tags %}

Tags

{% for tag in contact.tags %} {{ tag }} {% endfor %}
{% endif %} {% if contact.is_birthday %}

🎂 Joyeux anniversaire !

{{ contact.birthday_message }}

{% if contact.phone %} Envoyer par WhatsApp {% endif %}
{% endif %} {% if contact.note %}

Notes

{{ contact.note | markdown }}
{% endif %} {% if contact.interactions %}

Interactions

{% for inter in contact.interactions %}
{{ inter.date }} {% if inter.type %}{{ inter.type }}{% endif %}
{% if inter.note %}
{{ inter.note | markdown }}
{% endif %}
{% endfor %}
{% endif %}