{% extends 'base.html' %} {% block title %}Support Tickets - Optinet Global Links{% endblock %} {% block content %}

Support Tickets

Manage and track customer support requests

{{ total_tickets|default:0 }} Total
{{ open_tickets|default:0 }} Active
{{ resolved_tickets|default:0 }} Resolved
{{ urgent_tickets|default:0 }} Urgent
Type to search...
All Tickets
{{ page_obj.start_index|default:0 }}-{{ page_obj.end_index|default:0 }} of {{ page_obj.paginator.count|default:0 }}
{% if page_obj %}
{% for ticket in page_obj %} {% empty %} {% endfor %}
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" }}
{% if user.is_staff %} {% endif %}
No tickets found

No support tickets match your current filters.

Create First Ticket
{% if page_obj.has_other_pages %} {% endif %} {% else %}
No tickets available

Start by creating your first support ticket.

Create Ticket
{% endif %}
{% endblock %}