{% extends "base/layout.html" %} {% block content %}

Manager Engagement Review

{{ workspace.client_name }}

{{ workspace.service_name }} · {{ workspace.financial_year }}

Weighted Progress
{{ workspace.weighted_progress.progress_percent }}%
Pending Review
{{ workspace.pending_review_count }}
Reviewed
{{ workspace.reviewed_count }}
Rework
{{ workspace.rework_count }}
SLA
{{ workspace.sla.label }}
{% if request.query_params.get('reviewed') %}
Manager review saved.
{% endif %} {% if request.query_params.get('review_error') %}
Review could not be saved. Rework requires a reason, and locked or not-ready tasks cannot be reviewed.
{% endif %}
{% set task = workspace.active_task %} {% if task %}
{{ task.category }}

{{ task.task_name }}

{{ task.description }}

{{ task.task_status_label }}{% if task.is_aqmm_task %}AQMM{% endif %}{% if task.blocks_final_release %}Final Gate{% endif %}
Prepared By
{{ task.assigned_to }}
Evidence
{{ task.evidence_count }} document(s)
Comments
{{ task.comment_count }}
Manager Review
{{ task.review_state_label }}

Staff Response & Conclusion

Response Type
{{ task.response_type }}
Response
{{ task.checklist_response or task.checklist_text_response or task.checklist_number_response or task.checklist_date_response or 'Not entered' }}
Checklist Remarks
{{ task.checklist_remarks or 'No remarks' }}
{% if task.rework_reason %}
Rework Reason
{{ task.rework_reason }}
{% endif %}

Communication Timeline

{% for comment in task.comments %}
{{ comment.comment_type.replace('_',' ').title() }}{{ comment.created_at_utc }}

{{ comment.message }}

{% else %}

No communication recorded.

{% endfor %}

Manager Review Decision

{% if task.is_locked or workspace.is_locked %}
This task or engagement is locked. Review is read-only.
{% endif %}
Close Workspace
{% else %}
No tasks are available in this engagement.
{% endif %}
{% endblock %}