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

Tenant Subdomains

Create audit firm platform subdomains like auditfirm.filingabc.com. This uses your existing domain_mappings table.

Back to Domains
{% if errors %}
Please fix the following:
{% endif %} {% if message %}
{{ message }}
{% endif %}

For local testing you can use filingabc.local. For production use filingabc.com and configure wildcard DNS/SSL for *.filingabc.com.

Audit firm subdomain candidates

{% for item in candidates %} {% set tenant = item.tenant %} {% set mapping = item.mapping %} {% else %} {% endfor %}
Audit Firm Suggested Subdomain Current Status Action
{{ tenant.display_name or tenant.name }}
Code: {{ tenant.code }} · ID: {{ tenant.id }}
{{ item.domain_name }} {% if mapping %}
Created
{{ mapping.status|title }}{% if mapping.is_verified %} · Verified{% else %} · Pending verification{% endif %}
{% else %} Not created {% endif %}
{% if mapping %} Open Mapping {% else %}
{% endif %}
No audit firms found.
Deployment note

This phase creates and resolves tenant subdomain mappings in the ERP. DNS/SSL is still deployment-level: point *.{{ base_domain }} to your server and configure wildcard SSL in Coolify/Caddy/Traefik/Nginx as applicable.

{% endblock %}