Files
sarah/templates/partials/light_check.yaml
2022-12-01 16:01:59 +02:00

12 lines
301 B
YAML

>-
{%- if is_state('light.all', 'on') -%}
There are
{%- for state in states.light if state.state == 'on' -%}
{% if loop.last %} {{ loop.index }} {% endif %}
{%- endfor -%}
lights turned on right now.
{%- else -%}
There are no lights turned on right now.
{%- endif -%}