{% extends "base.html" %} {% block title %}{{ staff.full_name }} - GMAO{% endblock %} {% block content %}

{{ staff.full_name }}

Retour
Informations
Prénom{{ staff.first_name }}
Nom{{ staff.last_name }}
Fonction{{ staff.function or '—' }}
Service{{ staff.department or '—' }}
Email{{ staff.email or '—' }}
Téléphone{{ staff.phone or '—' }}
Statut {% if staff.is_active %} Actif {% else %} Inactif {% endif %}
Statistiques

{{ staff.intervention_count }}

Demandes total

{{ staff.open_intervention_count }}

En cours
Historique des demandes ({{ interventions|length }})
{% if interventions %} {% for interv in interventions %} {% endfor %}
Titre Statut Priorité Date
#{{ interv.id }} {{ interv.title[:50] }}{% if interv.title|length > 50 %}…{% endif %} {{ interv.status_label }} {{ interv.priority_label }} {{ interv.requested_at.strftime('%d/%m/%Y') if interv.requested_at else '—' }}
{% else %}

Aucune demande liée à ce personnel.

{% endif %}
{% endblock %}