{% extends 'base_dashboard.html' %} {% block title %}{% if is_staff_inbox %}Support Inbox{% else %}My Support Tickets{% endif %} — {{ site_settings.institute_name }}{% endblock %} {% block content %}

{% if is_staff_inbox %}Support Inbox{% else %}Support Tickets{% endif %}

{% if is_staff_inbox %}Review and reply to user support requests.{% else %}Get help with enrollments, payments, courses, or your account.{% endif %}

New Ticket
{{ total_count }}
Total
{{ open_count }}
Open
{{ progress_count }}
In Progress
{{ resolved_count }}
Resolved / Closed
All Open In Progress Resolved Closed
{% if is_staff_inbox %}{% endif %} {% for ticket in tickets %} {% if is_staff_inbox %} {% endif %} {% empty %} {% endfor %}
TicketFromCategory Priority Status Updated
{{ ticket.subject }}
{{ ticket.reference }}
{{ ticket.created_by.get_display_name }}
{{ ticket.created_by.get_role_display }}
{{ ticket.get_category_display }} {% if ticket.priority == 'high' %} High {% elif ticket.priority == 'medium' %} Medium {% else %} Low {% endif %} {% if ticket.status == 'open' %} Open {% elif ticket.status == 'in_progress' %} In Progress {% elif ticket.status == 'resolved' %} Resolved {% else %} Closed {% endif %} {{ ticket.updated_at|date:"M d, Y H:i" }} Open
No tickets yet. {% if not is_staff_inbox %} {% endif %}
{% endblock %}