{% load i18n humanize %}
{% if ticket_list_caption %}{{ ticket_list_caption }}{% else %}{% trans "Your Tickets" %}{% endif %}
{% for ticket in ticket_list %} {% empty %} {% if ticket_list_empty_message %}{% else %}{% endif %} {% endfor %}
# {% trans "Pr" %} {% trans "Title" %} {% trans "Queue" %} {% trans "Status" %} {% trans "Last Update" %}
{{ ticket.ticket }} {{ ticket.priority }} {{ ticket.title }} {{ ticket.queue }} {{ ticket.get_status }} {{ ticket.modified|naturaltime }}
{{ ticket_list_empty_message }}{% trans "You do not have any pending tickets." %}