{% extends DSL_LAYOUT_NAME %} {% load static %} {% load ticket %} {% block django_support_lite_content %}
List Tickets
{% if perms.django_support_lite.can_manage %}
Tickets awaiting response: {{ count_awaiting }}
{% endif %}
{% if tickets %} {% for ticket in tickets %} {% endfor %}
Labels Title User Date  
{{ ticket|ticket_state_label }} {% if ticket.status == Status.OPEN and perms.django_support_lite.can_manage %} {{ ticket.priority|ticket_priority_label }} {% endif %} {{ ticket.title }} {{ ticket.user.username }} {{ ticket.updated_at }} Ticket

{% else %} {% include 'partials/stub.html' with text='No tickets.' %} {% endif %} {% endblock %}