Glance card in Entities card

A thing that I always miss when building dashboards is the ability to put multiple cards into one frame. I can put cards in a vertical stack for example but they will look like totally separate cards, there’s no visual grouping. The closest thing so far is the entities card with its various row types.

But now I saw this post by @petro, which I think is exactly what I need. I’m trying out this syntax, but something must be different about my setup because I’m getting errors:

I can’t figure out what I’m doing wrong.

The solution to the post shows that you need to use the internal name of the glance card.

type: entities
entities:
  - type: 'custom:hui-glance-card'
    entities:
      - entity: binary_sensor.fenster_arbeitszimmer_contact
      - entity: binary_sensor.tuer_arbeitszimmer_contact
      - entity: sensor.messwerte_arbeitszimmer_temperature
  - type: 'custom:text-divider-row'
    text: divider
  - type: 'custom:hui-glance-card'
    entities:
      - entity: binary_sensor.fenster_arbeitszimmer_contact
      - entity: binary_sensor.fenster_arbeitszimmer_contact
      - entity: binary_sensor.fenster_arbeitszimmer_contact
  - type: 'custom:text-divider-row'
    text: divider

Nice, that works!

I didn’t get at first that the second code snippet is a correction for the first one.

Card in card, I love it. <3