{% extends "layout.html" %} {% block content %}

✏️ Edit User: {{ user.username }}

System Administrator - Edit user across companies

← Back to Users

Basic Information

Company & Team

Role & Permissions

{% if user.role == Role.SYSTEM_ADMIN %} ⚠️ Warning: This user is a System Administrator {% endif %}

Account Status

Whether the user's email address has been verified
Blocked users cannot log in to the system

User Information

{{ user.account_type.value }}
{{ user.created_at.strftime('%Y-%m-%d %H:%M') }}
{% if user.business_name %}
{{ user.business_name }}
{% endif %}
{{ 'Yes' if user.two_factor_enabled else 'No' }}
Cancel {% if user.id != g.user.id and not (user.role == Role.SYSTEM_ADMIN and user.id == g.user.id) %}

Danger Zone

Permanently delete this user account. This action cannot be undone.

{% endif %}
{% endblock %}