{% extends "base.jinja2" %} {% block title %}Account - DarkflameServer{% endblock %} {% block css %}{% endblock %} {% block content %}
← Back to Accounts

Account #{{ account.id }} - {{ account.name }}

View account details and manage settings

Account ID
{{ account.id }}
Username
{{ account.name }}
Created
{{ account.created_at }}
GM Level
{% if account.gm_level > 0 %} GM {{ account.gm_level }} {% else %} User {% endif %}
Ban Status
{% if account.banned %} BANNED {% else %} Active {% endif %}
Lock Status
{% if account.locked %} LOCKED {% else %} Unlocked {% endif %}
Mute Expires
{% if account.mute_expire > 0 %} {{ account.mute_expire }} {% else %} Not muted {% endif %}
{% if not account.banned %} {% else %} {% endif %} {% if not account.locked %} {% else %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}