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 %}