{% load contacts_extras %}
Prénom | Nom | Téléphone | Actions |
---|---|---|---|
{{ contact.first_name }} | {{ contact.last_name }} | {{ contact.phone_number | format_number }} |
{% if not avoid_deleting_contact %}
{% with filter=request.GET.filter %}
{% if filter %}
{% else %}
{% endif %}
{% endwith %}
{% endif %}
|