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

Communication Detail

{{ client.client_name }} • {{ catalogue.service_name }} • {{ task.task_name }}

Back
{% if errors %}
{% for error in errors %}
{{ error }}
{% endfor %}
{% endif %}
Client
{{ client.client_name }}
Service
{{ catalogue.service_name }}
Task Status
{{ task.status.replace('_',' ').title() }}

Consultant-visible Timeline

{% for item in timeline %}
{{ item.comment_type.replace('_',' ').title() }} {{ item.visibility.replace('_',' ').title() }}
{{ item.created_at_utc.strftime('%d-%m-%Y %H:%M') if item.created_at_utc else '-' }}
{{ item.created_by.full_name or item.created_by.email if item.created_by else 'System' }}

{{ item.message }}

{% else %}
No consultant-visible timeline found.
{% endfor %}
{% if not task.is_locked and not (task.subscription and task.subscription.is_locked) %}
{% else %}
This task/engagement is locked. Replies are disabled.
{% endif %}
{% endblock %}