{% 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.

{% set tabs = [ ('overview','Overview'), ('work-centre','Work Centre'), ('clients-requests','Clients & Requests'), ('documents-clarifications','Documents & Clarifications'), ('reports','Reports') ] %}
{% for code, label in tabs %} {% endfor %}
{% if 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 %}