{% extends "personnes/base.html" %} {% block extrascripts %} {{ block.super }} {% endblock %} {% block appbar %}

Gestion des personnes — Accès

Retourner à la gestion des personnes {% endblock %} {% block beforecontent %} {% endblock %} {% block content %}
{% if active_list %}

Accès actifs

{% for object in active_list %} {% with worker=object.userworker.worker %} {% endwith %} {% endfor %}
Identifiant Courriel Fiche Personnel Roles Désactiver
{{object.username}} {{object.email}}{% if worker %}{{ worker }}{% else %}-{% endif %}{% for role in object.groups.all %}{{ role.name }} {% endfor %}
{% else %}

Il n'y a aucun compte actif.

{% endif %}
{% if inactive_list %}

Accès inactifs

{% for object in inactive_list %} {% with worker=object.userworker.worker %} {% endwith %} {% endfor %}
Identifiant Courriel Fiche Personnel Activer
{{object.username}} {{object.email}}{% if worker %}{{ worker }}{% else %}-{% endif %}
{% else %}

Il n'y a aucun compte inactif.

{% endif %}
{% endblock %} {% block dialogs %} {% endblock %}