Raised while using FTC trying to display a dynamic list count value in the title.
When using FTC displaying a list for found IP addresses from NetworkScanner, it would be great to be able to also show the quantity of found items.
When using the markdown card, you can do this:
## Devices: {{ state_attr('sensor.network_scanner','devices') | count }}
and this prints:
Devices 19
But when using the same in FTC:
title: Devices: {{ state_attr('sensor.network_scanner','devices') | count }}
it prints
Devices: {{ state_attr('sensor.network_scanner','devices') | count }}
It could also be that I am doing it wrong. In this case I appreciate a working tip which could be included in the FTC description.