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

{{ engagement.catalogue.service_name if engagement.catalogue else 'Engagement' }}

FY {{ engagement.financial_year }}{% if engagement.assessment_year %} • AY {{ engagement.assessment_year }}{% endif %} • Due {{ engagement.current_due_date.strftime('%d-%m-%Y') if engagement.current_due_date else '-' }}

Back to My Compliance

Task / Action Status

{% for task in tasks %}
{{ task.task_name }}
{{ task.description or '' }}
{{ task.status|replace('_',' ')|title }}
{% else %}
No task details available.
{% endfor %}

Communication Timeline

{% for note in comments %}
{{ note.task.task_name if note.task else 'Message' }}
{{ note.created_at_utc.strftime('%d-%m-%Y %I:%M %p') if note.created_at_utc else '' }}

{{ note.message }}

{% else %}
No visible communication yet.
{% endfor %}
{% endblock %}