{% extends 'base.html' %} {% load static %} {% block title %}Chat with {{ chat_partner.user.username }} - Gatsby{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{{ chat_partner.user.username|first|upper }}
{{ chat_partner.user.username }}

{{ chat_partner.university }} · {{ chat_partner.role|title }}

{% for message in messages %}
{{ message.content }} {% if message.sender == user.profile %}You{% else %}{{ message.sender.user.username }}{% endif %} · {{ message.timestamp|date:"H:i" }}
{% empty %}

This is the beginning of your conversation with {{ chat_partner.user.username }}.

{% endfor %}
{% endblock %}