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

Liste Utilisateurs Total : {{ users.count }} utilisateurs

{% for user in users %} {% endfor %}
Photo Nom & Prénom(s) Email Profil Actions
{% if user.photo %} Photo {% else %} {% endif %} {{ user.last_name }} {{ user.first_name }} {{ user.email }} {{ user.usertype }} {% if user.is_active %} {% else %} {% endif %} {% if user.suppression %} {% else %} {% endif %}
{% endblock %}