{% extends "base.html" %} {% block title %}Painel do Agente{% endblock %} {% block content %}

Painel do Agente (Tickets Ativos)

{% if tickets_detalhes %}
{% for detalhe in tickets_detalhes %} {% set ticket = detalhe.ticket %} {% set is_mine = detalhe.agente and detalhe.agente.id_usuario == session.usuario_id %}
{{ ticket.status.value }} #{{ ticket.id_ticket[:8] }}...

{{ ticket.assunto }}

Solicitante: {{ detalhe.solicitante.nome_completo }}

Agente: {% if detalhe.agente %} {% if is_mine %}Você{% endif %} {{ detalhe.agente.nome_completo }} {% else %} Não atribuído {% endif %}

Abrir {% if ticket.status.value == 'Em Andamento' %}
{% endif %}
{% endfor %}
{% else %}

Nenhum ticket ativo no momento.

{% endif %}
{% endblock %}