Contacts
{{ stats.total }} contact{{ 's' if stats.total != 1 }}
Arbre généalogique
{% for rel, count in stats.by_relation.items() %}
{{ rel | title }} {{ count }}
{% endfor %}
|
{% for pri, count in stats.by_priority.items() %}
{{ pri | title }} {{ count }}
{% endfor %}
{% if birthdays %}
🎂 Anniversaires ({{ today }})
{{ birthdays | length }}
{% for contact in birthdays %}
{% if contact.photo %}
{% else %}
{{ contact.name[:1] }}
{% endif %}
🎉 {{ contact.name }}
{% if contact.birthday %}
{{ contact.birthday }}
{% endif %}
{% endfor %}
{% endif %} {% for relation, group_contacts in groups %}
{{ relation | title }}
{{ group_contacts | length }}
{% for contact in group_contacts %}
{% if contact.photo %}
{% else %}
{{ contact.name[:1] }}
{% endif %}
{{ contact.name }}
{% if contact.note %}
{{ contact.note[:60] }}{{ '...' if contact.note | length > 60 }}
{% endif %} {% if contact.tags %}
{% for tag in contact.tags[:4] %}
{{ tag }}
{% endfor %} {% if contact.tags | length > 4 %}
+{{ contact.tags | length - 4 }}
{% endif %}
{% endif %}
{% if contact.priorite %}
{% endif %}
{% endfor %}
{% endfor %}