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

Edit Consultant Workspace

Update your workspace display details. Plan, billing, subscription and limits are controlled by the firm/admin.

Back to Workspace
{% if errors %}
{% endif %}
Plan
{{ workspace.plan_code.replace('_',' ').title() if workspace and workspace.plan_code else 'Starter' }}
Subscription
{{ workspace.subscription_status.replace('_',' ').title() if workspace and workspace.subscription_status else 'Trial' }}
Billing
{{ workspace.billing_cycle.replace('_',' ').title() if workspace and workspace.billing_cycle else 'Manual' }}
Client Limit
{{ workspace.max_managed_clients if workspace else 25 }}
Admin-controlled fields

Workspace type, plan, subscription status, billing cycle, client/user limits, feature switches and active status cannot be changed from the consultant portal.

Cancel
{% endblock %}