{% extends "layout.html" %} {% block content %}
Manage user accounts and permissions across your organization
{{ user.email if user.email else 'No email' }}
| User | Role | Team | Status | Joined | Actions | |
|---|---|---|---|---|---|---|
|
|
{{ user.email if user.email else '-' }} | {{ user.role.value if user.role else 'Team Member' }} | {{ user.team.name if user.team else 'Unassigned' }} | {% if user.is_blocked %}Blocked{% else %}Active{% endif %} | {{ user.created_at.strftime('%Y-%m-%d') }} |
✏️
{% if user.id != g.user.id %}
{% endif %}
|