{% extends "base.html" %} {% block title %}All Tickets{% endblock %} {% block page_title %}All Tickets{% endblock %} {% block content %}
CSV
Tickets ({{ tickets.total }})
{% if tickets.items %}
{% for t in tickets.items %} {% endfor %}
Ticket # Title Category Status Priority Submitted By Assigned To Date
{{ t.ticket_number }} {{ t.title }} {{ t.category.replace('_',' ').title() }} {{ t.status.replace('_',' ').upper() }} {{ t.priority.upper() }} {{ t.creator.full_name }} {{ t.assignee.full_name if t.assignee else '—' }} {{ t.created_at | localtime("%b %d") }}
{% if current_user.is_admin %} {% endif %}
{% if tickets.pages > 1 %}
{% endif %} {% else %}
No tickets match the current filters.
{% endif %}
{% if current_user.is_admin %} {% endif %}
{% if current_user.is_admin %} {% endif %}
{% endblock %}