{% extends "ui/templates/base/layout.html" %} {% block content %}

{{ client.client_name }} — Business Structure

Maintain Business Units, Client Branches and statutory registrations under one PAN/legal client.

Back to Client
{% if can_edit %}

Add Business Unit

Add Client Branch

Add Registration

{% endif %}
Business Units
{% for row in businesses %}{% else %}{% endfor %}
CodeBusiness UnitTrade NameNatureStatus
{{ row.business_code }}{{ row.business_name }}{% if row.is_primary %} Primary{% endif %}{{ row.trade_name or '-' }}{{ row.nature_of_business or '-' }}{{ 'Active' if row.is_active else 'Inactive' }}{% if can_edit %}
{% endif %}
No Business Units added.
Client Branches
{% for row in branches %}{% else %}{% endfor %}
CodeClient BranchTypeLocationStatus
{{ row.branch_code }}{{ row.branch_name }}{% if row.is_primary %} Primary{% endif %}{{ row.branch_type|replace('_',' ')|title }}{{ row.city or '' }}{% if row.city and row.state %}, {% endif %}{{ row.state or '-' }}{{ 'Active' if row.is_active else 'Inactive' }}{% if can_edit %}
{% endif %}
No Client Branches added.
Registrations
{% for row in registrations %}{% else %}{% endfor %}
TypeNumberTrade / Unit NameStateStatus
{{ registration_type_codes.get(row.id, "-") }}{{ row.registration_number }}{{ row.trade_name or row.legal_name or '-' }}{{ row.state or '-' }}{{ row.status|replace('_',' ')|title }}{% if can_edit %}
{% endif %}
No registrations added.
{% endblock %}