Nested structure field data in the top level structure view?

Hey,

If I have a structure field nested inside of a structure field is it possible to show that nested data in the “top level” instead of the just “…”?

My blueprint is like this:

  alldates:
    type: structure
    label: Dates
    columns:
      dates:
        width: 1/4
      starttime:
        width: 1/4
      endtime:
        width: 1/4
      location:
        width: 1/4
    fields:        
      autoid:
        type: hidden
        translate: false
      dates:
        label: Dates
        type: structure
        fields:
          startdate:
            type: date
            label: Start date
          enddate:
            type: date
            label: End date
      starttime:
        label: Start time
        type: time
        notation: 24
        width: 1/3
      endtime:
        label: End time
        type: time
        notation: 24
        width: 1/3
      location:
        label: Location
        type: text
        width: 1/3

Basically I would like the column “dates” to show both the start date and end date. Is that possible somehow?

You can probably adapt this plugin for your needs: https://github.com/sylvainjule/kirby-previews