{% extends 'base.html' %}{% load static %} {% block title %}Chat with {{ merchant.business_name }} — Unity Nation{% endblock %} {% block content %}
🏪
{{ merchant.business_name }}
Direct conversation with merchant
View Store
{% for msg in messages %}
{{ msg.sender.username|first|upper }}
{{ msg.sender.username }}
{{ msg.message }}
{{ msg.created_at|date:"M d, H:i" }}
{% empty %}
💬

No messages yet. Start a conversation with {{ merchant.business_name }}.

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