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

{{ 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 %}{{ 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.note %}

Notes

{% for paragraph in contact.note.split('\n\n') %}

{{ paragraph }}

{% endfor %}
{% endif %}