mirror of
https://github.com/GeorgeSG/sarah.git
synced 2026-04-29 06:48:16 +00:00
12 lines
301 B
YAML
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 -%}
|