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

{{ board.label }}

{{ board.client.client_name if board.client else 'Unlinked Client' }} {% if board.client and board.client.client_code %} · {{ board.client.client_code }}{% endif %}

{% if board.manual_blocker %}
{% elif not (board.subscription and board.subscription.is_locked) %} {% endif %} Close Workspace Engagement Documents
{% if request.query_params.get('paused') %}
Engagement workflow paused and the assigned Manager was notified.
{% endif %} {% if request.query_params.get('resumed') %}
Engagement workflow resumed.
{% endif %} {% if request.query_params.get('pause_error') or request.query_params.get('resume_error') %}
The workflow status could not be changed. Confirm the reason and that the engagement is not locked.
{% endif %} {% if board.workflow_blocker %}
{{ board.workflow_blocker.label }}
{% if board.workflow_blocker.notes %}
{{ board.workflow_blocker.notes }}
{% endif %} {% if board.workflow_blocker.follow_up_date %}
Follow-up date: {{ board.workflow_blocker.follow_up_date }}
{% endif %} {% if board.workflow_blocker.type == 'automatic' %}
This blocker is derived automatically from the existing AQMM/review workflow.
{% endif %}
{% endif %} {% if request.query_params.get('saved') %}
Task response saved successfully.
{% endif %} {% if request.query_params.get('workflow_error') %}
The task could not be saved. Complete the required response, remarks and evidence, and confirm that the task is not locked.
{% endif %}
Overall Progress
{{ board.progress_percent }}%
Total
{{ board.summary.total }}
In Progress
{{ board.summary.in_progress }}
Blocked
{{ board.summary.blocked }}
Completed
{{ board.summary.completed }}
{% set task = board.active_task %} {% if task %}
{{ board.active_category }}

{{ task.task_name }}

{% if task.description %}

{{ task.description }}

{% endif %}
Task #{{ task.sequence_no }} {% if task.response_required %}Response Required{% endif %} {% if task.evidence_required or task.aqmm_evidence_required %}Evidence Required{% endif %} {% if task.is_locked or (task.subscription and task.subscription.is_locked) %}Locked{% endif %}
{% set response_type = task.response_type or 'NONE' %} {% if response_type != 'NONE' or task.response_required %}

Checklist Response

Save a draft at any stage. Required controls are enforced when the task is marked Completed.

{% if response_type in ['YES_NO_NA', 'YES_NO'] %}
{% elif response_type == 'TEXT' %}
{% elif response_type == 'NUMBER' %}
{% elif response_type == 'DATE' %}
{% endif %}
{% else %} {% endif %}

Evidence and Communication

Use the existing document and timeline controls. Uploaded task documents remain linked to this task and engagement.

Close Workspace
{% else %}
No assigned workflow task is available.
{% endif %}

Engagement Summary

Existing engagement details and document controls remain unchanged.

Open Documents
Engagement Status
{{ board.subscription.status if board.subscription else '-' }}
Financial Year
{{ board.subscription.financial_year if board.subscription else '-' }}
Due Date
{{ board.subscription.current_due_date if board.subscription else '-' }}
Review Partner
{{ board.subscription.review_partner.full_name if board.subscription and board.subscription.review_partner else '-' }}
{% endblock %}