{% extends "layouts/base.html" %} {% block title %} Listes des clients {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %} {% load auth_extras %}
{% include 'includes/navigation.html' %}

  Liste des clients

{% csrf_token %}
  
{% for client in liste_clients %} {% endfor %}
# Nom prenom Téléphone
{{client.id}} {{client.nom|default:''}} {{client.prenom|default:''}} {{client.telephone1}}
{% csrf_token %}
 
{% csrf_token %}
 
{% csrf_token %}
{% include 'includes/footer.html' %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}