From d7916700033084e9350e8395be9cec8ed49bda88 Mon Sep 17 00:00:00 2001 From: A R R R Associates Date: Fri, 31 Jul 2026 11:53:27 +0530 Subject: [PATCH] Fix consultant linked firm clients tab rendering --- .../templates/consultants/portal_dashboard.html | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/app/modules/consultants/templates/consultants/portal_dashboard.html b/app/modules/consultants/templates/consultants/portal_dashboard.html index d4aa5a1..c8d018e 100644 --- a/app/modules/consultants/templates/consultants/portal_dashboard.html +++ b/app/modules/consultants/templates/consultants/portal_dashboard.html @@ -20,14 +20,24 @@ {# Dashboard sections are now available from the global Consultant Dashboard menu. #}
- {% if active_tab == 'work-centre' %} + {% if active_tab == 'assigned-work' %} + {% include "modules/consultants/templates/consultants/portal_partials/assigned_work.html" %} + {% elif active_tab == 'clients' %} + {% include "modules/consultants/templates/consultants/portal_partials/clients.html" %} + {% elif active_tab == 'documents' %} + {% include "modules/consultants/templates/consultants/portal_partials/documents.html" %} + {% elif active_tab == 'clarifications' %} + {% include "modules/consultants/templates/consultants/portal_partials/clarifications.html" %} + {% elif active_tab == 'requests' %} + {% include "modules/consultants/templates/consultants/portal_partials/service_requests.html" %} + {% elif active_tab == 'reports' %} + {% include "modules/consultants/templates/consultants/portal_partials/reports.html" %} + {% elif active_tab == 'work-centre' %} {% include "modules/consultants/templates/consultants/portal_partials/work_centre.html" %} {% elif active_tab == 'clients-requests' %} {% include "modules/consultants/templates/consultants/portal_partials/clients_requests.html" %} {% elif active_tab == 'documents-clarifications' %} {% include "modules/consultants/templates/consultants/portal_partials/documents_clarifications.html" %} - {% elif active_tab == 'reports' %} - {% include "modules/consultants/templates/consultants/portal_partials/reports.html" %} {% else %} {% include "modules/consultants/templates/consultants/portal_partials/overview.html" %} {% endif %}