{% extends "base.html" %} {% block title %}Users - Familiar Admin{% endblock %} {% block content %}
| User | Role | Status | Last Active | Channels | Actions |
|---|---|---|---|---|---|
|
{{ u.name[0].upper() if u.name else '?' }}
{{ u.name or 'No name' }}
{{ u.email }}
|
{{ u.role.value }} | {{ u.status.value }} | {% if u.last_active %} {{ u.last_active.strftime('%Y-%m-%d %H:%M') }} {% else %} Never {% endif %} | {% if u.telegram_id %} 📱 {% endif %} {% if u.discord_id %} 💬 {% endif %} {% if not u.telegram_id and not u.discord_id %} — {% endif %} | Edit |