Files
sarah/config/templates/partials/light_check.yaml
T
2020-03-20 02:08:56 +02:00

12 lines
308 B
YAML

>-
{%- if is_state('light.all_lights', '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 -%}