{% extends 'base.html.twig' %} {% block title %}Liste des clients{% endblock %} {% block header %} {{parent()}} {% endblock %} {% block stylesheets %} {{parent()}} {% endblock %} {% block body %}

Liste des clients

Ajouter un client
{% for client in clients %} {#} {% if client.entreprise == app.user.entreprise or client.clientCommun == 1%}#} {% if client.dateDelete is null %} {#} {% endif %} #} {% endif %} {% endfor %}
Nom Adresse Code Postal Ville Téléphone Email
{{ client.nom }} {{ client.adresse1 }}
{{ client.adresse2 }}
{{ client.codePostal }} {{ client.ville }} {{ client.telephone }} {{ client.email }}
Ajouter un client
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {#$('#datatableSalarieId').DataTable({ columnDefs: [ { targets: [1, 2, 12, 18], orderable: true }, // tri sur les colonnes 1 (Nom), 2 (Prénom), 3 (Contrat), 4 (Responsable hiérarchique) { targets: [0, 3, 4,5,6,7,8,9,10,11,13,14,15,16,17,19], orderable: false } //voir si on fait vraiment le tri que sur certaine colonne ] }); });#}