mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-05 21:48:03 +00:00
Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Sojan Jose <sojan@pepalo.com> Co-authored-by: Pranav <pranav@chatwoot.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
18 lines
662 B
Plaintext
18 lines
662 B
Plaintext
# Current Conversation Context
|
|
- Conversation ID: {{ conversation.display_id }}
|
|
- Contact ID: {{ conversation.contact_id }}
|
|
- Status: {{ conversation.status }}
|
|
- Priority: {{ conversation.priority || "None" }}
|
|
{% if conversation.label_list.size > 0 -%}
|
|
- Labels: {{ conversation.label_list | join: ", " }}
|
|
{% endif -%}
|
|
{% if conversation.custom_attributes -%}
|
|
{% for attribute in conversation.custom_attributes -%}
|
|
- {{ attribute[0] }}: {{ attribute[1] }}
|
|
{% endfor -%}
|
|
{% endif -%}
|
|
{% if conversation.additional_attributes -%}
|
|
{% for attribute in conversation.additional_attributes -%}
|
|
- {{ attribute[0] }}: {{ attribute[1] }}
|
|
{% endfor -%}
|
|
{% endif -%} |