{% extends "base.html" %} {% block head %} {% endblock %} {% block content %}
{% for group in ldatas %} {% if ldatas[group]["lights"] %}

{{ ldatas[group]["name"] }}

{% for light in ldatas[group]["lights"] %}
{% set ldata = ldatas[group]["lights"][light] %}

{{ ldata["name"] }}

{% if "ct" in ldata["state"] %}
{{ ldata["state"]["colormode"].upper() }} {% if "hue" in ldata["state"] %} {% endif %}
{% endif %}
{% endfor %}
{% endif %} {% endfor %}
{% endblock %}