{% extends 'chat/base.html' %} {% load humanize %} {% block content %}

Chat with {{ recipient.username }}

{% for message in messages %}

{{ message.sender.username }}: {{ message.content }}
{{ message.timestamp|naturaltime }}

{% endfor %}
{% endblock %}