{% extends 'base.html' %} {% block title %}Messages · TradeHub{% endblock %} {% block content %}
{# Sidebar — conversation list #} {# Main — active chat thread #}
{% if active_conv %}
{{ other_user.username }}
{{ other_user.username }} Online status unknown
{# Product context #} {% if active_conv.product %} {{ active_conv.product.title }}
{{ active_conv.product.title }} ${{ '%.2f' % active_conv.product.price }}
{% endif %} {# Messages #}
{% for msg in messages %} {% set is_me = msg.sender_id == current_user.id %}
{{ msg.content }}
{{ msg.created_at.strftime('%H:%M') }}
{% endfor %}
{# Composer #}
{% else %}

Select a conversation

Choose a conversation from the sidebar to start chatting.

{% endif %}
{% endblock %} {% block scripts %} {% if active_conv %} {% endif %} {% endblock %}