{% extends "base.html" %} {% block title %}Conferências{% endblock %} {% set active = "app-conferences" %} {% block content %}

🎧 Conferências

+ Nova
{% for c in items %}
{{ c.name }} {{ c.extension }} ✏️
PIN: {{ c.pin or "-" }}
Admin PIN: {{ c.admin_pin or "-" }}
Máx: {{ c.max_users }} usuários
{% if c.enabled %}Ativo{% else %}Inativo{% endif %}
{% if c.description %}{{ c.description }}{% endif %}
{% else %}
Nenhuma conferência cadastrada.
{% endfor %} {% endblock %}