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

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

Delete User Account

Permanently delete this user account. This will also delete all their time entries and cannot be undone.

{% endif %}
{% endblock %}