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

My Support Tickets

{% if tickets %}
{% for ticket in tickets %} {% endfor %}
Ticket ID Subject Priority Status Date Action
#{{ ticket.id }} {{ ticket.subject }} {{ ticket.priority }} {{ ticket.status }} {{ ticket.created_at|date:"d M Y H:i" }} View Details
{% else %}
You have no support tickets yet. If you need help, use the AI chat and escalate to a live agent.
{% endif %} Back to Shop
{% endblock %}