{% extends "base.html" %} {% load static %} {% block title %}Liste des Clients - ECOLUX{% endblock %} {% block content %}

👥 Clients ECOLUX

Total: {{ customers.paginator.count }} client{{ customers.paginator.count|pluralize }}
{% if search_query %} Réinitialiser {% endif %}
{% for customer in customers %} {% empty %} {% endfor %}
Client Contact Simulations Dernière activité Membre depuis Actions
{{ customer.full_name|slice:":2"|upper }}
{{ customer.full_name }}
ID: #{{ customer.id }}
{% if customer.phone %} {% else %}
Téléphone non renseigné
{% endif %}
{% if customer.simulation_count > 0 %} {{ customer.simulation_count }} simulation{{ customer.simulation_count|pluralize }} {% else %} Aucune simulation {% endif %}
{% if customer.last_simulation_date %} {{ customer.last_simulation_date|date:"d/m/Y H:i" }} {% else %} Jamais {% endif %} {{ customer.created_at|date:"d/m/Y" }}
{% if customer.simulation_count > 0 %} Voir simulations {% endif %} {% if customer.phone %} WhatsApp {% endif %} Email
Aucun client trouvé.
{% if customers.has_other_pages %}
{% endif %}
Total clients
{{ customers.paginator.count }}
Clients actifs
{% for customer in customers %} {% if customer.simulation_count > 0 %}{% if forloop.first %}0{% endif %}{% endif %} {% endfor %} {{ customers.object_list|length }}
Nouveaux ce mois
-
{% endblock %}