{% extends "core/base.html" %} {% block title %}Assistants - Inventory Management System{% endblock %} {% block page_title %}Business Assistants{% endblock %} {% load custom_filters %} {% block header_actions %} Invite Assistant {% endblock %} {% block content %}
Total Assistants
{{ assistants|length }}
Active
{{ assistants|filter:"is_active=True,invitation_accepted_at__isnull=False"|length }}
Pending
{{ assistants|filter:"is_active=True,invitation_accepted_at__isnull=True"|length }}
Inactive
{{ assistants|filter:"is_active=False"|length }}
Assistants List {{ assistants|length }}
{% if assistants %}
{% for assistant in assistants %} {% endfor %}
User Role Permissions Status Joined Actions
{% if assistant.user %}
{{ assistant.user.get_full_name|default:assistant.user.username|first|upper }}
{% else %}
{% endif %}
{% if assistant.user %} {{ assistant.user.get_full_name|default:assistant.user.username }} {% else %} {{ assistant.invited_email }} {% endif %}
{% if assistant.user %} {{ assistant.user.email }} {% else %} {{ assistant.invited_email }} Not Registered {% endif %}
{{ assistant.get_role_display }}
{% if assistant.can_manage_products %} Products {% endif %} {% if assistant.can_view_reports %} Reports {% endif %} {% if assistant.can_manage_users %} Users {% endif %} {% if assistant.can_manage_settings %} Settings {% endif %}
{% if assistant.is_active %} {% if assistant.invitation_accepted_at %} Active {% elif assistant.invitation_expired %} Expired {% else %} Pending {% endif %} {% else %} Inactive {% endif %}
{% if assistant.invitation_accepted_at %} {{ assistant.invitation_accepted_at|date:"M d, Y" }} {% elif assistant.invitation_sent_at %} Invited: {{ assistant.invitation_sent_at|date:"M d, Y" }} {% else %} N/A {% endif %}
{% if assistant.is_active %} {% if assistant.invitation_accepted_at %} {% else %} {% endif %} {% else %} {% endif %}
{% else %}
No Assistants Found

Start by inviting team members to help manage your business.

Invite Your First Assistant
{% endif %}
{% if assistants.has_other_pages %} {% endif %}
{% endblock %}