Genesis Radio: Recording Scheduler Control Panel
{% for show, info in shows.items() %}
{{ display_names.get(show, show) }}
{{ '✅ Active' if info['recording'] else '❌ Inactive' }}
Duration: {{ info['duration'] }} seconds
{% for slot in info['schedule'] %}
{{ slot.day }} at {{ slot.time }}
{% endfor %}
{{ 'Deactivate' if info['recording'] else 'Activate' }}
{% endfor %}