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

Firm Admin Bulk Onboarding

Import Result

Created {{ import_result.summary.created }} of {{ import_result.summary.total }} rows. Failed {{ import_result.summary.failed }} rows.

{% if import_result.invite_links %}

Invite link fallback

Copy these links if automatic email is not configured or failed for any user.

{% for item in import_result.invite_links %}
Row {{ item.row_no }} — {{ item.name }} / {{ item.email }} / {{ item.role }}
Email status: {{ item.email_status or 'not_attempted' }}
{% endfor %}
{% endif %}
{% for row in import_result.rows %} {% endfor %}
RowStatusNameEmailRoleMessage
{{ row.row_no }} {{ row.status }} {{ row.name or '-' }} {{ row.email or '-' }} {{ row.role or '-' }} {{ row.message }}
{% endblock %}