{% extends "admin/admin_base.html" %} {% block title %}{{ profile.Username }} — KittyRec Admin{% endblock %} {% block head %} {% endblock %} {% block content %}
{{ profile.Username[0]|upper }}
Change

{{ profile.Username }} {% if profile.Developer %}Dev{% endif %} {% if profile.Banned %}Banned{% endif %}

{{ profile.DisplayName }}  ·  ID #{{ profile.Id }}
{% if is_online %}
Online{% if cur_session %} — {{ cur_session.name }}{% endif %}
{% else %}
Offline
{% endif %}
{% if is_online %} {% endif %} {% if not profile.Banned %} {% elif SCOPE_ADMIN in scopes %} {% endif %} {% if SCOPE_ADMIN in scopes %} {% endif %}
Level
{{ profile.Level }}
XP
{{ "{:,}".format(profile.XP) }}
Joined
{{ (profile.CreatedAt or '—')[:10] }}
Last Login
{{ (profile.LastLogin or '—')[:16].replace('T',' ') }}
Tokens
{{ "{:,}".format(profile.get('tokens') or profile.get('Tokens') or 0) }}
Bio
{{ profile.Bio or '—' }}
{% if profile.Banned %}
Ban Reason
{{ profile.BanReason or '—' }}
Banned Until
{{ profile.BannedUntil or 'Permanent' }}
{% endif %}
{% if SCOPE_ADMIN in scopes %}

Admin Notes

{% endif %}

Activity Timeline

Click Load to fetch activity

Ban Log

{{ ban_log|length }}
{% if ban_log %} {% for b in ban_log %}
{{ b.created_at[:16] if b.created_at else '—' }} {% if b.action == 'ban' %}Ban{% else %}Unban{% endif %} {{ b.reason or '—' }} {{ b.admin_name or '—' }}
{% endfor %} {% else %}

No ban history

{% endif %}

Recent Gifts

{{ gifts|length }}
{% if gifts %}
{% for g in gifts[:20] %} {% endfor %}
DateXPItemStatus
{{ g.created_at[:10] if g.created_at else '—' }} +{{ "{:,}".format(g.xp) }} {{ g.equipment_prefab_name or '—' }} {% if g.consumed %}Opened{% else %}Pending{% endif %}
{% else %}

No gifts

{% endif %}
{% if SCOPE_ADMIN in scopes %}

Security

Loading…

Discord

Loading…

Inventory

Click Load

Recent Chats

Click Load

Social Graph

Loading…

Gift Caps

Loading…

Settings

Loading…

{% endif %} {% include 'admin/partials/ban_modal.html' %} {% if SCOPE_ADMIN in scopes %} {% include 'admin/partials/gift_modal.html' %} {% endif %} {% endblock %} {% block scripts %} {% endblock %}