Selected Person

{{ person.name }}

Showing last {{ limit }} messages.

{% with participants=workspace_conversation.participants.all %} {% if participants %}

Participants: {% for participant in participants %} {% if not forloop.first %}, {% endif %} {{ participant.name }} {% endfor %}

{% endif %} {% endwith %} {% if workspace_conversation.participant_feedback %}

Participant Feedback: {{ workspace_conversation.participant_feedback }}

{% endif %} {% if compose_page_url %} {% endif %}
Send: {{ send_state.text }}
{% if not send_state.can_send %} {% endif %}
{% if message_rows %} {% for row in message_rows %}

{{ row.message.text|default:"(no text)" }}

{{ row.ts_label }} {% if row.message.custom_author %} | {{ row.message.custom_author }} {% endif %}

{% endfor %} {% else %}

No messages found for this contact.

{% endif %}