{% extends 'base.html' %} {% load static %} {% block title %}Team Members - {{ organization.name }}{% endblock %} {% block content %}
Manage your organization's team members and their roles
| User | Role | Status | Joined | Permissions | Actions | |
|---|---|---|---|---|---|---|
|
{{ member.user.first_name|default:member.user.username|first|upper }}
{{ member.user.get_full_name|default:member.user.username }}
{% if member.role == 'OWNER' %}
Owner
{% endif %}
{% if member.user == request.user %}
You
{% endif %}
|
{{ member.user.email }} | {{ member.get_role_display }} | {% if member.is_active %} Active {% else %} Inactive {% endif %} | {{ member.joined_at|date:"d M Y" }} |
{% if member.can_view_reports %}
{% endif %}
{% if member.can_create_transactions %}
{% endif %}
{% if member.can_edit_transactions %}
{% endif %}
{% if member.can_manage_settings %}
{% endif %}
|
{% if member.user != request.user and member.role != 'OWNER' %} {% else %} - {% endif %} |
|
No team members found. |
||||||
Full access to all features including user management, billing, and organization settings.
Can manage users, settings, and all transactions. Cannot manage billing or delete organization.
Can create, edit, and delete transactions. Can view all reports and manage contacts.
Can create and view transactions. Can view basic reports. Limited editing capabilities.
Read-only access. Can view transactions and reports but cannot make any changes.