Clarifications

Firm messages visible to consultant and consultant replies.

Open Messages

Pending From Firm

{% for comment, task, subscription, client, catalogue in payload.recent_firm_messages %}
{{ client.client_name }} — {{ catalogue.service_name }}
{{ task.task_name }} • {{ comment.created_at_utc.strftime('%d-%m-%Y %H:%M') if comment.created_at_utc else '' }}
{{ comment.message }}
{% else %}
No pending firm messages.
{% endfor %}

My Recent Replies

{% for comment, task, subscription, client, catalogue in payload.recent_consultant_replies %}
{{ client.client_name }} — {{ catalogue.service_name }}
{{ task.task_name }} • {{ comment.created_at_utc.strftime('%d-%m-%Y %H:%M') if comment.created_at_utc else '' }}
{{ comment.message }}
{% else %}
No consultant replies yet.
{% endfor %}