{% extends "base.html" %} {% block title %}Edit account · XMR Administration{% endblock %} {% block content %} {% if account is defined %}

← Accounts

Edit account {{ account.user_id }}

{% if form_error %}{% endif %}
{% if errors.get("username") %}

{{ errors["username"] }}

{% endif %} {% if errors.get("wallet") %}

{{ errors["wallet"] }}

{% endif %}

{% if account.status == "active" %}Disable{% else %}Enable{% endif %} account

No account data will be deleted. Existing sessions are revoked when an account is disabled.

{% else %}

Account not found

{{ message }}

Return to accounts

{% endif %} {% endblock %}