{% extends "base.html" %} {% block title %}Atribuir Ticket{% endblock %} {% block content %}

Direcionar ticket

Escolha o agente responsável e o ticket aberto que deve receber atendimento.

Agentes disponíveis

Visualize rapidamente quem pode receber novos chamados.

{{ agentes|length }} Agente{% if agentes|length != 1 %}s{% endif %}
{% if agentes %}
{% for agente in agentes %} {% endfor %}
Nome Especialidade
{{ agente.nome_completo }} {{ agente.especialidade or 'Sem especialidade definida' }}
{% else %}

Nenhum agente disponível

Cadastre novos agentes ou verifique filtros aplicados.

{% endif %}

Tickets aguardando atribuição

Detalhes dos chamados que ainda precisam de responsável.

{{ tickets|length }} Ticket{% if tickets|length != 1 %}s{% endif %}
{% if tickets %}
{% for ticket in tickets %} {% endfor %}
Assunto ID
{{ ticket.assunto }} #{{ ticket.id_ticket[:8] }}...
{% else %}

Nenhum ticket pendente

Todos os chamados foram atribuídos. Parabéns!

{% endif %}
{% endblock %}