{% load i18n humanize %}
{% trans "Unassigned Tickets" %} {% trans "(pick up a ticket if you start to work on it)" %}
{% for ticket in unassigned_tickets %} {% empty %} {% endfor %}
{% if unassigned_tickets_sort %} {% with current=unassigned_tickets_sort %} {% if current == 'id' %} {% trans "Ticket" %} {% elif current == '-id' %} {% trans "Ticket" %} {% else %} {% trans "Ticket" %} {% endif %} {% endwith %} {% else %} {% trans "Ticket" %} {% endif %} {% if unassigned_tickets_sort %} {% with current=unassigned_tickets_sort %} {% if current == 'priority' %} {% trans "Priority" %} {% elif current == '-priority' %} {% trans "Priority" %} {% else %} {% trans "Priority" %} {% endif %} {% endwith %} {% else %} {% trans "Priority" %} {% endif %} {% if unassigned_tickets_sort %} {% with current=unassigned_tickets_sort %} {% if current == 'queue' %} {% trans "Queue" %} {% elif current == '-queue' %} {% trans "Queue" %} {% else %} {% trans "Queue" %} {% endif %} {% endwith %} {% else %} {% trans "Queue" %} {% endif %} {% if unassigned_tickets_sort %} {% with current=unassigned_tickets_sort %} {% if current == 'created' %} {% trans "Created" %} {% elif current == '-created' %} {% trans "Created" %} {% else %} {% trans "Created" %} {% endif %} {% endwith %} {% else %} {% trans "Created" %} {% endif %} {% trans "Actions" %}
{{ ticket.id }}. {{ ticket.title }} {{ ticket.priority }} {{ ticket.queue }} {{ ticket.created|naturaltime }}
{% trans "There are no unassigned tickets." %}
{% if unassigned_tickets.has_other_pages %} {% endif %}
{% for kbitem in kbitems %} {% if kbitem.unassigned_tickets %}
{% trans "KBItem:" %} {{kbitem.title}} {% trans "Team:" %} {{kbitem.get_team.name}} {% trans "(pick up a ticket if you start to work on it)" %}
{% for ticket in kbitem.unassigned_tickets %} {% empty %} {% endfor %}
{% trans "Ticket" %} {% trans "Priority" %} {% trans "Queue" %} {% trans "Created" %} {% trans "Actions" %}
{{ ticket.id }}. {{ ticket.title }} {{ ticket.priority }} {{ ticket.queue }} {{ ticket.created|naturaltime }}
{% trans "There are no unassigned tickets." %}
{% endif %} {% endfor %}