{% extends 'user_enterprise.html.twig' %} {% block title %}Mes clients {% endblock %} {% block body %}

Mes Clients

Ajouter un(e) client(e)
{#
#} {#
#} {#
#} {#
#} {#
#} {#
#} {#
#} {#
2384
#} {#
Nombre
#} {#
#} {#
#} {#
#} {#
#} {#
#} {#
#}
Liste des clients
{% if clients is defined %} {% for client in clients %} {% endfor%} {% endif%}
{{ knp_pagination_sortable(clients, 'Nom & Prénom', 'c.name') }} {{ knp_pagination_sortable(clients, 'Date de création', 'c.createdAt') }} {{ knp_pagination_sortable(clients, 'Phone', 'c.phone') }} {{ knp_pagination_sortable(clients, 'Nbre de commande', 'orderCount') }} Actions
{{ client.fullname }} {{ client.createdAt | date("d/m/Y h:i") }} {{ client.phone }} {{ client.ordersCount }} voir Modifier
{% if clients.totalItemCount > limit %}
{% endif %}
{% endblock %}