{% extends "admin/base.html" %} {% block title %}Dashboard Administrativo{% endblock %} {% block content %}
{{ total_users }}
{{ active_users }}
{{ inactive_users }}
| Nome | Status | Último Login | Ações | |
|---|---|---|---|---|
| {{ user.email }} | {{ user.name }} | {{ "Ativo" if user.is_active else "Inativo" }} | {{ user.last_login.strftime('%d/%m/%Y %H:%M') if user.last_login else 'Nunca' }} |