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

👥 System Admin - All Users

Manage users across all companies

← Back to Dashboard

Filter Users

{% if users.items %}
{% for user_data in users.items %} {% set user = user_data[0] %} {% set company_name = user_data[1] %} {% endfor %}
Username Email Company Role Account Type Status Created Actions
{{ user.username }} {% if user.id == g.user.id %} You {% endif %} {{ user.email }} {{ company_name }} {% if user.company and user.company.is_personal %} Personal {% endif %} {{ user.role.value }} {{ user.account_type.value }} {% 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 and not (user.role == Role.SYSTEM_ADMIN and user.id == g.user.id) %}
{% endif %}
{% if users.pages > 1 %}

Showing {{ users.per_page * (users.page - 1) + 1 }} - {{ users.per_page * (users.page - 1) + users.items|length }} of {{ users.total }} users

{% endif %} {% else %}

No users found

No users match the current filter criteria.

{% endif %}
{% endblock %}