Contacts
{{ stats.total }} contact{{ 's' if stats.total != 1 }}
{% for rel, count in stats.by_relation.items() %}
{{ rel | title }} {{ count }}
{% endfor %}
|
{% for pri, count in stats.by_priority.items() %}
{{ pri | title }} {{ count }}
{% endfor %}
{% 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.genre %}
{% endif %}
{% 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 %}