HI,
is it a bug, not a feature yet, or am I doing something wrong when I try to have a set of cards displayed based on the value of an input_boolean:
- type: conditional
conditions:
- entity: input_select.mode
state: 'Developer'
card:
- type: entities
title: Developer tools
show_header_toggle: false
entities:
- switch.mode_developer
- script.scan_orphans
- script.remove_orphans
- script.scan_ghosts
- script.remove_ghosts
- input_select.log_level
- type: entities
title: Orphans sensor
icon: mdi:magnify
entities:
- sensor.orphans_sensor
- type: entities
title: Ghosts sensor
icon: mdi:ghost
entities:
- sensor.ghosts_sensor
- type: entities
title: Developer links
show_header_toggle: true
entities:
- type: weblink
name: Hassio Configurator
icon: mdi:wrench
url: !secret configurator_url
- type: weblink
name: Terminal
icon: mdi:console
url: !secret terminal_url
- type: weblink
name: NodeRED Flows
icon: mdi:nodejs
url: https://hassio.local:1880
- type: weblink
name: IDE
icon: mdi:code-braces
url: https://hassio.local:8321
- type: entities
title: Developer scripts
show_header_toggle: false
entities:
- script.reload_frontend
- script.reload_python
- script.restart_ha
- script.rc_reboot_iungo
- script.sc_reboot_iungo
- script.update_custom_ui
There is no documentation on multiple cards, so maybe I am asking for a feature not(yet) possible. Since we can’t set views based on a state (as we can in regular HA) this would come closest.
please have a look?