{% extends "base.html" %} {% block title %}User Management & Activity Tracking - AppManager{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Monitor real-time online status, login metrics, and manage user roles and permissions
| User / Email | Status | Role | Registration Date | Last Login | Logins | Last IP | Actions |
|---|---|---|---|---|---|---|---|
|
{{ u.name or u.email }} {{ render_user_flair_badge(u.id) }}
{{ u.email }}
|
{% if u.is_online() %} 🟢 Online {% else %} ⚪ Offline {% endif %} {% if not u.is_active %} Disabled {% endif %} | {% if u.role == 'admin' %} Admin {% else %} User {% endif %} | {{ u.created_at.strftime('%Y-%m-%d') if u.created_at else 'N/A' }} | {{ u.last_login_at.strftime('%Y-%m-%d %H:%M') if u.last_login_at else 'Never' }} | {{ u.login_count }} |
{{ u.last_ip or 'N/A' }} |