{% extends "ui/templates/base/layout.html" %} {% block content %}
{% set _uiux_partner_role_text = (current_user_roles or [])|join('|')|lower %} {% if 'partner' in _uiux_partner_role_text %} {% include "ui/templates/components/partner_navigation_v2.html" %} {% endif %}

Bulk Registration Addition

Add the same registration type to multiple clients while entering each client’s unique registration number.

Registrations Dashboard
{% if created or skipped or invalid %}
Created
{{ created }}
Duplicates Skipped
{{ skipped }}
Invalid / Missing
{{ invalid }}
{% endif %}

Common Registration Settings

Per-client Business Unit and Branch selections in the table override this default.

0 clients selected
{% for client in clients %} {% set client_businesses = businesses_by_client.get(client.id, []) %} {% set client_branches = branches_by_client.get(client.id, []) %} {% else %} {% endfor %}
Client PAN / Existing GSTIN Registration Number * Business Unit Client Branch Legal Name Trade / Unit Name State
{{ client.client_name }}
{{ client.client_code or '' }}
PAN: {{ client.pan or '-' }}
GSTIN: {{ client.gstin or '-' }}
No active clients are available in the current Firm Branch.

Rows without a registration number are treated as invalid. Existing registration numbers are skipped without changing their records.

Cancel
{% endblock %}