{% extends 'base.html' %}{% load static %} {% block title %}Order #{{ order.id }} Chat — Unity Nation{% endblock %} {% block content %}
🏪
Order #{{ order.id }} Chat
{{ order.product.name|default:order.service.name }} · {{ order.merchant.business_name }}
{{ order.get_status_display|default:order.status }} Order Details
{% for msg in messages %}
{{ msg.sender.username|first|upper }}
{{ msg.sender.username }}
{{ msg.content }}
{{ msg.created_at|date:"M d, H:i" }}
{% empty %}
💬

No messages yet. Start a conversation with the merchant about your order.

{% endfor %}
{% csrf_token %}
{% endblock %}