I have this list of chores as booleans to help my kids be focused and remember the tasks they have in the morning, all things are conditional dependant on the day, and time of day, so there are different lists in the morning afternoon, and some items only appear on specific days, i would like to make a conditional within a condition, is that at all possible, without creating a new card within a card?
below is an excerpt from the morning file, it only has monday, otherwise the message becomes too long
type: vertical-stack
cards:
- type: conditional
conditions:
- entity: sensor.day_of_week
state: Mandag
- entity: sensor.is_before_09am
state: 'true'
card:
type: entities
title: Mandag
show_header_toggle: false
state_color: true
entities:
- entity: input_boolean.v_spise_morgenmad
- entity: input_boolean.v_borste_taender
- entity: input_boolean.v_tag_toej_paa
- entity: input_boolean.v_pakke_skoletaske
## i would like the line below to be conditional on a sensor##
- entity: input_boolean.v_solcreme
## the rest should be normal##
- entity: input_boolean.v_husk_biblioteksboeger
- entity: input_boolean.v_pakke_handboldtoej
- entity: input_boolean.v_skema
.....
layout_options:
grid_columns: 4
grid_rows: auto```
is this at all possible?