{% 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." %}
{% if ticket_list.has_other_pages %}
    {% if ticket_list.has_previous %}
  • ««
  • «
  • {% else %}
  • ««
  • «
  • {% endif %} {% with 5 as thresh %} {% for i in ticket_list.paginator.page_range %} {% if ticket_list.number == i %}
  • {{ i }} (current)
  • {% elif i <= ticket_list.number|add:5 and i >= ticket_list.number|add:-5 %}
  • {{ i }}
  • {% endif %} {% endfor %} {% endwith %} {% if ticket_list.has_next %}
  • »
  • »»
  • {% else %}
  • »
  • »»
  • {% endif %}
{% endif %}