{% extends 'base.html' %} {% block content %}

Ticket #{{ ticket.id }} — {{ ticket.subject }}

Status: {{ ticket.status }}

Priority: {{ ticket.priority }}

Created: {{ ticket.created_at|date:"d M Y H:i" }}

Description:
{{ ticket.description }}

Conversation

{% for msg in chat_messages %}
{% if msg.is_bot %}🤖 NexusMart AI{% else %}👤 You{% endif %}: {{ msg.message }} {{ msg.created_at|date:"d M Y H:i" }}
{% endfor %} {% for reply in replies %}
{% if reply.is_from_admin %}👨‍💼 Support Team{% else %}👤 You{% endif %}: {{ reply.message }} {{ reply.created_at|date:"d M Y H:i" }} {% if reply.attachment %} {% endif %}
{% endfor %}
Reply to Support Team
{% csrf_token %}
Images, PDFs, order screenshots, etc.
← Back to My Tickets
{% endblock %}