{% extends "base.html" %} {% block title %}Edit User - Familiar Admin{% endblock %} {% block content %}
← Back to Users
{{ target_user.name[0].upper() if target_user.name else '?' }}

{{ target_user.name or 'No name' }}

{{ target_user.email }}

Account Information

User ID
{{ target_user.id }}
Status
{{ target_user.status.value }}
Created
{{ target_user.created_at.strftime('%Y-%m-%d %H:%M') }}
Last Active
{% if target_user.last_active %} {{ target_user.last_active.strftime('%Y-%m-%d %H:%M') }} {% else %} Never {% endif %}

Linked Channels

📱 Telegram
{% if target_user.telegram_id %} Linked (ID: {{ target_user.telegram_id }}) {% else %} Not linked {% endif %}
💬 Discord
{% if target_user.discord_id %} Linked (ID: {{ target_user.discord_id }}) {% else %} Not linked {% endif %}

Danger Zone

{% if target_user.status.value == 'active' %}
{% else %}
{% endif %}

Recent Activity

{% if activity %}
    {% for log in activity %}
  • {{ log.timestamp[:16].replace('T', ' ') }} {{ log.action.replace('_', ' ').title() }} {% if log.details %} — {{ log.details }} {% endif %}
  • {% endfor %}
{% else %}

No activity recorded

{% endif %}
{% endblock %}