{% 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 %}
{% 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." %}
{% 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 %}