{% extends "base.html" %} {% block title %}{{ page_title }}{% endblock %} {% set active = "pbx-ivrs" %} {% block content %}

🎤 URA - Atendimento Eletrônico

+ Nova URA
{% for item in ivrs %}
{{ item.ivr.name }} (ramal {{ item.ivr.extension }}) ✏️
Contexto: {{ item.ivr.context }}
Timeout: {{ item.ivr.timeout }}s
Dest. timeout: {{ item.ivr.timeout_destination }}
{% if item.ivr.enabled %}Ativo{% else %}Inativo{% endif %}
{% if item.entries %}
Opções: {% for e in item.entries %} {{ e.digit }} → {{ e.destination_type }}:{{ e.destination }} {% endfor %}
{% endif %}
{% else %}
Nenhuma URA cadastrada.
{% endfor %} {% endblock %}