{% extends "base.html" %} {% block title %}Anúncios{% endblock %} {% set active = "app-announcements" %} {% block content %}

📢 Anúncios

+ Novo Anúncio
{% for a in announcements %}
{{ a.name }} ✏️
Áudio: {{ a.audio_file or "-" }}
Destino: {{ a.destination }} ({{ a.destination_type }})
{% if a.repeat %}🔁 Repetir{% endif %} {% if a.allow_skip %}⏭ Pular com {{ a.skip_key }}{% endif %}
{% if a.enabled %}Ativo{% else %}Inativo{% endif %}
{% else %}
Nenhum anúncio cadastrado.
{% endfor %} {% endblock %}