Hello!
I’m trying to use Jinja templating in a dashboard, but the jinja template is never parsed, I’m not really understanding what I’m doing wrong.
To simplify, I’ve created an empty dashboard, and added this (the real use case is to change the icon color according to the status, I’m using this as a simplified example):
views:
- title: Home
cards:
- type: custom:mushroom-chips-card
chips:
- type: entity
entity: person.jduro
icon_color: '{{green}}'
alignment: center
As you can see in the screenshot, I’ve inspected the element in the browser and the jinja code is still there, shouldn’t the Home Assistant process that code and the result be something like:
Entity chips don’t have template colors, you need a template chip if you want dynamic colors… You can stay with the entity chip if you want a static color.
It doesn’t look like it is working… all those chips are grey even though they should have colors. The example directly below the one linked is appropriately colored and uses template chips.