{% extends DSL_LAYOUT_NAME %} {% load static %} {% load ticket %} {% block django_support_lite_content %}
List Tickets
{% if perms.django_support_lite.can_manage %}
Tickets pending response: {{ count_pending }}
{% endif %}
{% if not perms.django_support_lite.can_manage %}
Create
{% endif %}

{% if tickets %} {% if perms.django_support_lite.can_manage %} {% endif %} {% for ticket in tickets %} {% if perms.django_support_lite.can_manage %} {% endif %} {% endfor %}
Status Priority Title User Last Updated  
{{ ticket|ticket_state_label }} {{ ticket.priority|ticket_priority_label }} {{ ticket.title }} {{ ticket.user.username }} {{ ticket.updated_at }} View

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