{% extends "base.html" %} {% block title %}Mon profil — GMAO{% endblock %} {% block content %}

Mon profil

Informations
Nom d'utilisateur
{{ user.username }}
Nom complet
{{ user.full_name or '—' }}
Email
{{ user.email or '—' }}
Rôle
{% if user.is_admin() %} Administrateur {% elif user.has_permission('patrimoine.manage') %} Technicien {% else %} Utilisateur {% endif %}
Statut
{% if user.is_active %} Actif {% else %} Inactif {% endif %}
{% endblock %}