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

Domain Mapping

Map marketplace, audit firm, branch and consultant domains. Tenant subdomains like auditfirm.filingabc.com, firm domains like arrr.associates, and consultant profile domains like abc.accountants or yourname.arrr.accountant can be created from here.

{% if mappings %} {% for m in mappings %} {% endfor %}
Domain Type Mapped To Status Verification Action
{{ m.domain_name }}
SSL: {{ m.ssl_mode }} / {{ (m.ssl_status or "not_checked").replace("_", " ")|title }}
{{ m.domain_type.replace('_', ' ')|title }} {% if m.tenant %}
Firm: {{ m.tenant.display_name or m.tenant.name }}
{% endif %} {% if m.branch %}
Branch: {{ m.branch.name }}
{% endif %} {% if m.consultant %}
Consultant: {{ m.consultant.contact_person }}
{% endif %} {% if not m.tenant and not m.branch and not m.consultant %}Marketplace / platform{% endif %}
{{ m.status.replace('_', ' ')|title }} {% if m.is_primary %}Primary{% endif %} {% if m.is_verified %} Verified {% else %} Pending {% endif %}
{% else %}
No domain mappings found.
{% endif %}
{% endblock %}