{% extends 'base.html' %} {% block title %}Support Tickets - Optinet Global Links{% endblock %} {% block content %}
Manage and track customer support requests
Ticket # | Customer | Subject | Priority | Status | Assigned To | Created | Actions |
---|---|---|---|---|---|---|---|
{{ ticket.ticket_id }}
|
{{ ticket.customer.full_name }}
{{ ticket.customer.phone }} |
{{ ticket.title }}
{% if ticket.category %}
{{ ticket.category.name }} {% endif %} |
{% if ticket.priority == 'urgent' %} {% elif ticket.priority == 'high' %} {% endif %} {{ ticket.get_priority_display }} | {% if ticket.status == 'closed' %} {% elif ticket.status == 'in_progress' %} {% endif %} {{ ticket.get_status_display }} |
{% if ticket.assigned_employee or ticket.assigned_to %}
{{ ticket.assigned_person }}
{% else %}
Unassigned
{% endif %}
|
{{ ticket.created_at|date:"M d, Y" }}
{{ ticket.created_at|time:"H:i" }} |
|