{% extends "base.html" %} {% load static %} {% block content %}

Conversation with {{ other_user.username }}

← Back to Inbox
{% csrf_token %}
{% for msg in thread_messages %}
{{ msg.sender.username }} {{ msg.created_at|date:"M d, Y H:i" }}
{{ msg.body|linebreaksbr }}
{% empty %}

No messages in this conversation yet.

{% endfor %}
{% csrf_token %}
{% endblock %}