diff --git a/app/ui/templates/base/layout.html b/app/ui/templates/base/layout.html
index 4b090eb..8253707 100644
--- a/app/ui/templates/base/layout.html
+++ b/app/ui/templates/base/layout.html
@@ -108,7 +108,7 @@
{% if firm_branding.logo_url %}
{% else %}
{{ (current_firm_name[:2] if current_firm_name else 'AF')|upper }}
{% endif %}
{{ current_firm_name }}
-
{% if full_auth %}{{ current_branch_name }}{% if current_branch_name and current_branch_name != "-" %} Branch{% endif %} • Workspace{% elif domain_context.is_resolved %}{{ current_branch_name or 'Domain Workspace' }}{% else %}Secure Practice Workspace{% endif %}
+
{% if full_auth %}{{ current_branch_name }}{% if current_branch_name and current_branch_name != "-" %} Branch{% endif %} | Workspace{% elif domain_context.is_resolved %}{{ current_branch_name or 'Domain Workspace' }}{% else %}Secure Practice Workspace{% endif %}
@@ -400,11 +400,11 @@
{{ current_user.full_name or current_user.email }}
{{ current_user.email }}
{% if current_user.qualification or current_user.designation %}
- {{ current_user.qualification or '' }}{% if current_user.qualification and current_user.designation %} • {% endif %}{{ current_user.designation or '' }}
+ {{ current_user.qualification or '' }}{% if current_user.qualification and current_user.designation %} | {% endif %}{{ current_user.designation or '' }}
{% endif %}
Your Firm: {{ current_firm_name }}
- • Branch: {{ current_branch_name }}{% if active_financial_year %} • FY: {{ active_financial_year }}{% endif %}
+ | Branch: {{ current_branch_name }}{% if active_financial_year %} | FY: {{ active_financial_year }}{% endif %}
{% if "Consultant" in ui_roles %}
@@ -426,7 +426,7 @@
{% else %}
{% if domain_context.is_resolved %}
- {{ current_firm_name }}{% if current_branch_name %} • {{ current_branch_name }}{% endif %}
+ {{ current_firm_name }}{% if current_branch_name %} | {{ current_branch_name }}{% endif %}
{% endif %}
Login
{% endif %}
@@ -485,7 +485,7 @@
Active Scope:
{{ current_firm_name }}
- • {{ current_branch_name if active_branch_id else "All Branches" }}{% if active_financial_year %} • FY {{ active_financial_year }}{% endif %}
+ | {{ current_branch_name if active_branch_id else "All Branches" }}{% if active_financial_year %} | FY {{ active_financial_year }}{% endif %}
{% endif %}
@@ -626,3 +626,4 @@