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

Company Users - {{ company.name }}

Create New User

User Statistics

{{ stats.total }}

Total Users

{{ stats.active }}

Active Users

{{ stats.unverified }}

Unverified

{{ stats.blocked }}

Blocked

{{ stats.admins }}

Administrators

{{ stats.supervisors }}

Supervisors

User List

{% if users %}
{% for user in users %} {% endfor %}
Username Email Role Team Status Created Actions
{{ user.username }} {% if user.two_factor_enabled %} 🔒 {% endif %} {{ user.email }} {{ user.role.value }} {% if user.team %} {{ user.team.name }} {% else %} No team {% endif %} {% if user.is_blocked %}Blocked{% elif not user.is_verified %}Unverified{% else %}Active{% endif %} {{ user.created_at.strftime('%Y-%m-%d') }} Edit {% if user.id != g.user.id %} {% if user.is_blocked %} Unblock {% else %} Block {% endif %} {% endif %}
{% else %}

No Users Found

There are no users in this company yet.

Add First User
{% endif %}
← Back to Company Management
{% endblock %}