{{ other.username }} {% if other.profile.online %}{% endif %}
{% for msg in messages %}
{% if msg.sender.profile.avatar %}av{% else %}{{ msg.sender.username|first|upper }}{% endif %}
{{ msg.sender.username }} {{ msg.timestamp|date:"H:i" }}
{% if msg.content %}
{{ msg.content }}
{% endif %} {% if msg.file %}
{% if ".jpg" in msg.file.name or ".png" in msg.file.name or ".gif" in msg.file.name or ".webp" in msg.file.name %} image {% elif ".mp3" in msg.file.name or ".wav" in msg.file.name or ".ogg" in msg.file.name %} {% else %} {{ msg.file.name|slice:"11:" }} {% endif %}
{% endif %}
{% endfor %}
{% csrf_token %}