fix: Fix email template to render the chat bubble properly (#3858)
This commit is contained in:
@@ -4,25 +4,25 @@
|
|||||||
|
|
||||||
{% for chat_message in conversation.recent_messages %}
|
{% for chat_message in conversation.recent_messages %}
|
||||||
<div>
|
<div>
|
||||||
{% if chat_message.sender == user.available_name %}
|
<h4 style="margin: 0;">
|
||||||
<h4 style="margin: 0;">You</h4>
|
{% if chat_message.sender == user.available_name %}
|
||||||
{% else %}
|
You
|
||||||
<h4 style="margin: 0;">{{chat_message.sender}}</h4>
|
{% else %}
|
||||||
{% endif %}
|
{{chat_message.sender}}
|
||||||
|
{% endif %}
|
||||||
|
</h4>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div style="padding: 10px 20px; margin: 5px 0 20px 0; background: #F2F3F7; border-radius: 10px; display: inline-block; font-family: 'Helvetica Neue',Tahoma,Arial,sans-serif; text-align: start; unicode-bidi: plaintext;">
|
||||||
<p style="padding: 10px 20px; margin: 5px 0 20px 0; background: #F2F3F7; border-radius: 10px; display: inline-block; font-family: 'Helvetica Neue',Tahoma,Arial,sans-serif; text-align: start; unicode-bidi: plaintext;">
|
{% if chat_message.content %}
|
||||||
{% if chat_message.content %}
|
{{chat_message.content}}
|
||||||
{{chat_message.content}}
|
{% endif %}
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if chat_message.attachments %}
|
{% if chat_message.attachments %}
|
||||||
{% for attachment in chat_message.attachments %}
|
{% for attachment in chat_message.attachments %}
|
||||||
Attachment [<a href="{{ attachment }}" _target="blank">Click here to view</a>]
|
Attachment [<a href="{{ attachment }}" _target="blank">Click here to view</a>]
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
|||||||
@@ -7,24 +7,24 @@
|
|||||||
|
|
||||||
{% for chat_message in conversation.recent_messages %}
|
{% for chat_message in conversation.recent_messages %}
|
||||||
<div>
|
<div>
|
||||||
{% if chat_message.sender == user.available_name %}
|
<h4 style="margin: 0;">
|
||||||
<h4 style="margin: 0;">You</h4>
|
{% if chat_message.sender == user.available_name %}
|
||||||
{% else %}
|
You
|
||||||
<h4 style="margin: 0;">{{chat_message.sender}}</h4>
|
{% else %}
|
||||||
|
{{chat_message.sender}}
|
||||||
|
{% endif %}
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div style="padding: 10px 20px; margin: 5px 0 20px 0; background: #F2F3F7; border-radius: 10px; display: inline-block; font-family: 'Helvetica Neue',Tahoma,Arial,sans-serif; text-align: start; unicode-bidi: plaintext;">
|
||||||
|
{% if chat_message.content %}
|
||||||
|
{{chat_message.content}}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if chat_message.attachments %}
|
||||||
|
{% for attachment in chat_message.attachments %}
|
||||||
|
Attachment [<a href="{{ attachment }}" _target="blank">Click here to view</a>]
|
||||||
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
|
||||||
<p style="padding: 10px 20px; margin: 5px 0 20px 0; background: #F2F3F7; border-radius: 10px; display: inline-block; font-family: 'Helvetica Neue',Tahoma,Arial,sans-serif; text-align: start; unicode-bidi: plaintext;">
|
|
||||||
{% if chat_message.content %}
|
|
||||||
{{chat_message.content}}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if chat_message.attachments %}
|
|
||||||
{% for attachment in chat_message.attachments %}
|
|
||||||
Attachment [<a href="{{ attachment }}" _target="blank">Click here to view</a>]
|
|
||||||
{% endfor %}
|
|
||||||
{% endif %}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|||||||
@@ -8,25 +8,25 @@
|
|||||||
<p><b>Previous messages:</b></p>
|
<p><b>Previous messages:</b></p>
|
||||||
{% for chat_message in conversation.recent_messages %}
|
{% for chat_message in conversation.recent_messages %}
|
||||||
<div>
|
<div>
|
||||||
{% if chat_message.sender == user.available_name %}
|
<h4 style="margin: 0;">
|
||||||
<h4 style="margin: 0;">You</h4>
|
{% if chat_message.sender == user.available_name %}
|
||||||
{% else %}
|
You
|
||||||
<h4 style="margin: 0;">{{chat_message.sender}}</h4>
|
{% else %}
|
||||||
{% endif %}
|
{{chat_message.sender}}
|
||||||
|
{% endif %}
|
||||||
|
</h4>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div style="padding: 10px 20px; margin: 5px 0 20px 0; background: #F2F3F7; border-radius: 10px; display: inline-block; font-family: 'Helvetica Neue',Tahoma,Arial,sans-serif; text-align: start; unicode-bidi: plaintext;">
|
||||||
<p style="padding: 10px 20px; margin: 5px 0 20px 0; background: #F2F3F7; border-radius: 10px; display: inline-block; text-align: start; unicode-bidi: plaintext;">
|
{% if chat_message.content %}
|
||||||
{% if chat_message.content %}
|
{{chat_message.content}}
|
||||||
{{chat_message.content}}
|
{% endif %}
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if chat_message.attachments %}
|
{% if chat_message.attachments %}
|
||||||
{% for attachment in chat_message.attachments %}
|
{% for attachment in chat_message.attachments %}
|
||||||
Attachment [<a href="{{ attachment }}" _target="blank">Click here to view</a>]
|
Attachment [<a href="{{ attachment }}" _target="blank">Click here to view</a>]
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<p>
|
<p>
|
||||||
|
|||||||
Reference in New Issue
Block a user