{% extends "ui/templates/base/layout.html" %} {% block content %} {% include "modules/consultants/templates/consultants/_consultant_tabs.html" %}

Consultant Workspace

SaaS / franchise workspace foundation for your consultant portal.

Workspace Code
{{ workspace.workspace_code }}
Plan
{{ workspace.plan_code.replace('_',' ').title() }}
Status
{{ workspace.subscription_status.replace('_',' ').title() }}
Billing
{{ workspace.billing_cycle.replace('_',' ').title() }}

Workspace Details

Workspace Name
{{ workspace.workspace_name }}
Workspace Type
{{ workspace.workspace_type.replace('_',' ').title() }}
Subscription Period
{{ workspace.subscription_start_date or '-' }} to {{ workspace.subscription_end_date or '-' }}
Limits
{{ workspace.max_managed_clients }} managed clients • {{ workspace.max_user_accounts }} user account(s)
Enabled Features
Client Portal {{ 'On' if workspace.allow_client_portal else 'Off' }} Firm Referrals {{ 'On' if workspace.allow_firm_referrals else 'Off' }} Marketplace {{ 'On' if workspace.allow_service_marketplace else 'Off' }}
{% if workspace.remarks %}
Remarks
{{ workspace.remarks }}
{% endif %}
{% endblock %}