{% extends "base.html" %} {% block title %}Gestione Utenti - PyArchInit-Mini{% endblock %} {% block content %}

Gestione Utenti

{% for user in users %} {% endfor %}
Username Email Nome Completo Ruolo Stato Ultimo Accesso Azioni
{{ user.username }} {% if user.is_superuser %} Superuser {% endif %} {{ user.email }} {{ user.full_name or '-' }} {% if user.role == 'admin' %} Admin {% elif user.role == 'operator' %} Operator {% else %} Viewer {% endif %} {% if user.is_active %} Attivo {% else %} Inattivo {% endif %} {% if user.last_login %} {{ user.last_login }} {% else %} Mai {% endif %} {% if user.id != current_user.id %} {% endif %}
{% endblock %}