{% extends '__layout__.html' %} {% block title %}Admin{% endblock %} {% block head %} {% endblock %} {% block content %}
{% with messages = get_flashed_messages() %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}
{{userObj.username}}
{% if isAdministrator: %}

Administrator

{% endif %} {% if userObj.accountstatus == 2: %}

This account is temporarily banned

{% endif %} {% if userObj.accountstatus == 3: %}

This account has been deleted

{% endif %} {% if userObj.accountstatus == 4: %}

This account is GDPR deleted

{% endif %}
Created: {{userObj.created}}
Last Online: {{userObj.lastonline}}
2FA Enabled: {{userObj.TOTPEnabled}}
Place Visits: {{TotalVisits}}
Economy
Robux: R${{UserEconomyObj.robux}}
Tickets: T${{UserEconomyObj.tix}}
{% if LastestUserBanObj != None: %}
Ban Information
Ban Type: {{LastestUserBanObj.ban_type.name}}
Banned On: {{LastestUserBanObj.created_at}}
Expires On: {{LastestUserBanObj.expires_at}}
Reason: {{LastestUserBanObj.reason}}
Moderator Note: {{LastestUserBanObj.moderator_note}}
Banned By: {{LastestUserBanObj.author_userid}}
{%endif%}
Description
{% for line in DescriptionLines %}

{{line}}

{% endfor %}
{% if LastLogin != None: %}
Latest Login
User-Agent: {{LastLogin.useragent}}
Login Timestamp: {{LastLogin.timestamp}}
{%endif%} {% if LinkedDiscordObj != None: %}
Discord Account
Discord ID: {{DiscordUserInfo.UserId}}
Username: {{DiscordUserInfo.Username}}
Discriminator: {{DiscordUserInfo.Discriminator}}
Linked On: {{LinkedDiscordObj.linked_on}}
Last Refresh: {{LinkedDiscordObj.last_updated}}
{%endif%} {% if InviteKeyUsed != None: %}
Invite Key Info
Invite Key: {{InviteKeyUsed.key}}
Creator: {% if InviteKeyUsed.created_by != None: %}{{InviteKeyUsed.creator.username}}{%else%}Unknown{%endif%}
Created At: {{InviteKeyUsed.created_at}}
{%endif%}
Actions
Ban User {% if HasAdminPermission("ManageAdminPermissions") %} Manage Permissions{%endif%}
{% endblock %}