{% extends "client/base.html" %} {% block title %}Messages — client portal{% endblock %} {% block heading %}Messages{% endblock %} {% block content %}

Teniola Ayodele

Usually replies in a few hours
{% for m in thread %}
{% if m.sender == user %}You{% else %}{{ m.sender.get_full_name|default:"Teniola" }}{% endif %} · {{ m.created_at|date:"j M Y · H:i" }}

{{ m.body|linebreaksbr }}

{% if m.attachment %}{{ m.attachment.name }}{% endif %}
{% empty %}

No messages yet

Send the first one — anything about your project belongs here so it stays on the record.

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