{% extends "core/base.html" %} {% block title %}Invite Assistant - Inventory Management System{% endblock %} {% block page_title %}Invite Assistant{% endblock %} {% load custom_filters %} {% block header_actions %} Back to List {% endblock %} {% block content %}
Invite New Assistant
{% csrf_token %}
{% if form.email.errors %}
{{ form.email.errors.0 }}
{% endif %}
Enter the email address of the person you want to invite.
{% for value, label in role_choices %}
{% endfor %}
{% if form.role.errors %}
{{ form.role.errors.0 }}
{% endif %}

Add, edit, and delete products

Access sales and analytics reports

Invite and manage other assistants

Modify business settings

{% if subscription and subscription.plan.max_users <= assistants|filter:"is_active=True,invitation_accepted_at__isnull=False"|length|add:"1" %}
You've reached the maximum number of users ({{ subscription.plan.max_users }}) for your current plan. Upgrade your plan to add more users.
{% endif %}
Cancel
{% if subscription %}
Current Plan: {{ subscription.plan.name }}

Users Limit: {{ subscription.plan.max_users }} users

{% with active_users=assistants|filter:"is_active=True,invitation_accepted_at__isnull=False"|length|add:"1" %} {% widthratio active_users subscription.plan.max_users 100 as percentage %}
{% endwith %}

Currently using: {{ assistants|filter:"is_active=True,invitation_accepted_at__isnull=False"|length|add:"1" }}/{{ subscription.plan.max_users }} users

{% endif %}
{% endblock %}