{% extends "ui/templates/base/layout.html" %} {% block content %} {% include "modules/consultants/templates/consultants/_consultant_tabs.html" %}

Consultant Portal

Consultant Workspace

A grouped workspace for assignments, client requests, documents, clarifications and consultant reports.

{# Dashboard sections are now available from the global Consultant Dashboard menu. #}
{% 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 %}
{% endblock %}