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

My Support Tickets

Create Ticket
{% if page_obj %}
{% for ticket in page_obj %} {% endfor %}
Ticket # Subject Priority Status Created Actions
{{ ticket.ticket_number }}
{{ 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 }}
{{ ticket.created_at|date:"M d, Y" }}
{{ ticket.created_at|time:"H:i" }}
View
{% if page_obj.has_other_pages %} {% endif %}
{% else %}
No tickets found

You haven't created any support tickets yet.

Create Your First Ticket
{% endif %}
{% endblock %}