{% extends "base.html" %} {% load static %} {% block users %} {% include "header.html" %} {% include "leftbar.html" %} {% include "rightbar.html" %} {% include "chat.html" %}

Liste employés Total : {{ employes.count }} employés

{% for employe in employes %} {% endfor %}
Matricule Photo Nom & Prénom(s) Téléphone Ville Type contrat Poste Actions
{{ employe.matricule }} {% if employe.photo %} Photo {% else %} {% endif %} {{ employe.nom }} {{ employe.prenom }} {{ employe.telephone }} {{ employe.ville }} {{ employe.type_contrat }} {{ employe.poste_fonction }} {% if tiers.suppression %} {% else %} {% endif %}
{% endblock %}