{% extends "base.html" %} {% block title %}My Tickets{% endblock %} {% block page_title %}Tickets{% endblock %} {% block content %}
Tickets ({{ tickets.total }}) New Ticket
{% if tickets.items %} {% if current_user.is_it_staff %}{% endif %} {% for t in tickets.items %} {% if current_user.is_it_staff %} {% endif %} {% endfor %}
Ticket # Title Category Status PrioritySubmitted ByDate
{{ t.ticket_number }} {% if t.ai_generated %} {% endif %} {{ t.title[:55] }}{% if t.title|length > 55 %}…{% endif %} {{ t.category.replace('_',' ').title() }} {{ t.status.replace('_',' ').upper() }} {{ t.priority.upper() }}{{ t.creator.full_name }}{{ t.created_at.strftime('%b %d, %Y') }}
{% if tickets.pages > 1 %}
{% endif %} {% else %}
No tickets found. {% if search or status or priority or category %} Clear filters {% else %} Submit your first ticket → {% endif %}
{% endif %}
{% endblock %}