Video Commander Instance {{ instance_name }}
{% if buttons | length != 0 %}
Current group ({{ current_group }}) streams
{% for index in range(buttons | length) %}
{% if index % 3 == 0 %}
{% endif %}
{% set current_name = buttons[index][0] %}
{% if index + 1 == buttons | length or (index + 1) % 3 == 0 %}
{% endif %}
{% endfor %}
{% else %}
There are no stream buttons in this group
{% endif %}
{% if groups | length != 0 %}
Current group ({{ current_group }}) sub-groups
{% for index in range(groups | length) %}
{% if index % 3 == 0 %}
{% endif %}
{% set current_name = groups[index][0] %}
{% if index + 1 == groups | length or (index + 1) % 3 == 0 %}
{% endif %}
{% endfor %}
{% endif %}