{% extends 'base.html' %}{% load static %} {% block title %}My Conversations — Unity Nation{% endblock %} {% block extra_css %} .conv-row{display:flex;align-items:center;gap:13px;padding:14px 18px;border-top:1px solid rgba(255,255,255,.04);text-decoration:none;transition:background var(--tr)} .conv-row:hover{background:rgba(255,255,255,.03)} .c-av{width:44px;height:44px;border-radius:11px;background:rgba(123,95,230,.2);display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:700;color:var(--vlt);flex-shrink:0} .c-name{font-weight:600;font-size:.9rem;margin-bottom:2px} .c-sub{font-size:.75rem;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:280px} .c-time{font-size:.72rem;color:var(--muted);margin-left:auto;flex-shrink:0;white-space:nowrap} {% endblock %} {% block content %}
Messaging

My Conversations

Order chats and direct messages with merchants.

{% for room in chat_rooms %}
{{ room.order.merchant.business_name|first|upper }}
{{ room.order.merchant.business_name }}
Order #{{ room.order.id }} · {{ room.order.product.name|default:room.order.service.name }}
{{ room.updated_at|timesince }} ago
{% empty %}

No conversations yet

Your order chats with merchants will appear here once you make a purchase.

Browse Marketplace
{% endfor %}
{% endblock %}