{% extends "base.html" %} {% load i18n %} {% block title %}Chat with {{ other_user.username }} - RaktaPulse{% endblock %} {% block head %} {% endblock %} {% block content %}
{% if other_user.profile.profile_pic %} {{ other_user.username }} {% else %}
{% endif %}
{{ other_user.first_name }} {{ other_user.last_name|default:other_user.username }}
Online
{% for msg in chat_messages %}
{% if msg.message_type == 'text' %} {{ msg.content }} {% elif msg.message_type == 'image' %} {% if msg.content %}

{{ msg.content }}

{% endif %} {% elif msg.message_type == 'video' %} {% if msg.content %}

{{ msg.content }}

{% endif %} {% elif msg.message_type == 'file' %}
{{ msg.attachment.name|cut:"chat_attachments/" }} {{ msg.attachment.size|filesizeformat }}
{% if msg.content %}

{{ msg.content }}

{% endif %} {% elif msg.message_type == 'sticker' %}
{{ msg.sticker_id }}
{% endif %} {{ msg.timestamp|date:"g:i a" }}
{% empty %}

No messages yet. Say hi!

{% endfor %}
{% csrf_token %}
{% endblock %} {% block scripts %} {% endblock %}