{% extends "dashboard/base.html" %} {% block title %}Gestione Utenti - Dashboard{% endblock %} {% block dashboard_content %}

Gestione Utenti

{{ pagination.total_items if pagination else 0 }} utenti totali
{% if users %}
{% for user in users %} {% endfor %}
ID Username Nome Completo Email Ruolo Stato Registrato Ultimo Accesso
{{ user.id }} {{ user.username }} {% if user.is_admin %} Admin {% endif %} {{ user.full_name or '-' }} {{ user.email }} {{ user.role.title() }} {% if user.is_active %}Attivo{% else %}Inattivo{% endif %} {% if user.created_at %} {{ user.created_at.strftime('%d/%m/%Y %H:%M') }} {% else %} - {% endif %} {% if user.last_login %} {{ user.last_login.strftime('%d/%m/%Y %H:%M') }} {% else %} Mai {% endif %}
{% if pagination and pagination.total_pages > 1 %} {% endif %} {% else %}

Nessun utente trovato

Non ci sono utenti registrati nel sistema.

{% endif %}
{% endblock %}