{% 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.role == 'admin' %} Administrateur {% elif user.role == 'tech' %} Technicien {% else %} Utilisateur {% endif %}
Statut
{% if user.is_active %} Actif {% else %} Inactif {% endif %}
{% endblock %}