{% extends "console_page.html" %} {% block console_content %}

{{ org.name }}

Manage members, invitations, and seat usage for this organization.

{% if org_billing and can_manage_billing and stripe_enabled %} Manage Seats {% endif %}
{% if org_billing %}
Seats Purchased
{{ org_billing.purchased_seats }}
In Use
{{ org_billing.seats_reserved }}
Available
{{ org_billing.seats_available }}
{% endif %}

Members

{{ members|length }} member{{ members|length|pluralize }} in this organization.

{% if can_manage_members %} {% if org_billing and org_billing.seats_available <= 0 %} No seats available for standard members {% endif %} {% else %}
Read-only access
{% endif %}
{% for member in members %} {% empty %} {% endfor %}
Member Role Actions
{{ member.user.email }} {{ member.get_role_display }}
{% if can_manage_members %}
{% csrf_token %}
{% else %} {{ member.get_role_display }} {% endif %}
{% if can_manage_members and member.user.id != request.user.id %} {% endif %} {% if member.user.id == request.user.id %} {% endif %}
No standard members found for this organization.
{% if solutions_partners %}

Solutions Partners

{{ solutions_partners|length }} Solutions Partner{{ solutions_partners|length|pluralize }} in this organization.

{% for member in solutions_partners %} {% endfor %}
Member Role Actions
{{ member.user.email }} {{ member.get_role_display }}
{% if can_manage_members %}
{% csrf_token %}
{% else %} {{ member.get_role_display }} {% endif %}
{% if can_manage_members and member.user.id != request.user.id %} {% endif %} {% if member.user.id == request.user.id %} {% endif %}
{% endif %} {% if pending_invites %}

Pending Member Invitations

{{ pending_invites|length }} invitation{{ pending_invites|length|pluralize }} awaiting acceptance.

{% for invite in pending_invites %} {% endfor %}
Email Details Actions
{{ invite.email }} {{ invite.get_role_display }} · Invited by {{ invite.invited_by.email }} · Expires {{ invite.expires_at|date:"M j, Y" }}
{% csrf_token %}
{% endif %} {% if solutions_partner_invites %}

Pending Solutions Partner Invitations

{{ solutions_partner_invites|length }} invitation{{ solutions_partner_invites|length|pluralize }} awaiting acceptance.

{% for invite in solutions_partner_invites %} {% endfor %}
Email Details Actions
{{ invite.email }} {{ invite.get_role_display }} · Invited by {{ invite.invited_by.email }} · Expires {{ invite.expires_at|date:"M j, Y" }}
{% csrf_token %}
{% endif %} {% include "partials/_org_invite_revoke_modal.html" %} {% include "partials/_org_member_remove_modal.html" %} {% include "partials/_org_leave_modal.html" %}
{% endblock %}