I want to show a number of automations that have been shut off, but I want to exclude some of the experimental ones that I’m working on so I thought I’d use a tag to indicate which ones shouldn’t be counted. I used a label to indicate which ones are experimental so it should be excluded but this
{{ states.automation | selectattr('state', 'eq', 'off') | rejectattr('attributes.labels', 'in', ['Experimental']) | list | count }}
What am I missing?