{% extends "ui/templates/base/layout.html" %} {% block content %} {% if is_employee_self %} {% include "modules/employees/templates/employees/_my_workspace_tabs.html" %} {% else %} {% include "modules/managers/templates/managers/_manager_tabs.html" %} {% endif %}

Task Communication

Communication timeline for engagement task notes, clarifications and review remarks.

Back
Task
{{ task.task_name }}
{% if task.description %}

{{ task.description }}

{% endif %}
Client
{{ task.client.client_name if task.client else 'Unlinked Client' }}
{{ task.client.client_code if task.client else '' }}
Engagement / Service
{{ task.engagement_label }}
Target: {{ task.internal_target_date or '-' }}
{{ task.status_label }} {{ task.priority_label }} {{ task.date_bucket }} Assigned: {{ task.assigned_to.full_name if task.assigned_to else 'Unassigned' }}

Add communication

Communication Timeline

Newest communication appears first.

{% for item in task.communication_items %}
{{ item.comment_type.replace('_',' ').title() }} {{ item.visibility.replace('_',' ').title() }}
{{ item.created_at_utc }}

{{ item.message }}

By {{ item.created_by.full_name if item.created_by else 'System/User' }}
{% else %}
No communication has been added for this task yet.
{% endfor %}
{% endblock %}