{% extends "base.html" %} {% block title %}Tickets - Fastband{% endblock %} {% block content %}

Tickets {% if search_query %} - Search: "{{ search_query }}" {% endif %}

{{ total }} tickets
{% if tickets %}
{% for ticket in tickets %} {% endfor %}
ID Type Title Status Priority Assignee Created Updated
#{{ ticket.id }}
{{ ticket.title }} {% if ticket.labels %}
{% for label in ticket.labels[:2] %} {{ label }} {% endfor %} {% if ticket.labels|length > 2 %} +{{ ticket.labels|length - 2 }} {% endif %}
{% endif %}
{{ ticket.status.display_name }} {{ ticket.priority.display_name }} {% if ticket.assigned_to %} {{ ticket.assigned_to[0]|upper }} {{ ticket.assigned_to }} {% else %} Unassigned {% endif %} {{ ticket.created_at|datetime }} {{ ticket.updated_at|relative_time }}
{% if total_pages > 1 %} {% endif %} {% else %}
No tickets found

{% if search_query or current_status or current_priority or current_type or current_assignee %} Try adjusting your filters or search query. {% else %} There are no tickets in the system yet. {% endif %}

{% if search_query or current_status or current_priority or current_type or current_assignee %} Clear Filters {% endif %}
{% endif %}
{% endblock %}