I have 2 custom type made with CCK :
- Reunion
- Title
- Description
- Node reference to Guests (multiple)
- Guests
- Name
- Picture
- Biography
In Reunion I have a multiple node reference to Guests. (I can have multiple Guest in Reunion).
I would like to print (using views) like this :
Reunion 1
Description of the reunion 1
Guests :
* Guest 1
* Guest 2
* Guest 3
Reunion 2
Description of the reunion 2
Guests :
* Guest 2
* Guest 3
But the only way to print through views seems to be
Reunion 1
Description of the reunion 1
Guests :
* Guest 1
Reunion 1
Description of the reunion 1
Guests :
* Guest 2
Reunion 1
Description of the reunion 1
Guests :
* Guest 3
Reunion 2
Description of the reunion 2
Guests :
* Guest 2
Reunion 2
Description of the reunion 2
Guests :
* Guest 3
I have of course tried the Distinct option in the view parameter, but unfortunately, it only show me
Reunion 1
Description of the reunion 1
Guests :
* Guest 1
Reunion 2
Description of the reunion 2
Guests :
* Guest 2
And apparently skip the other Guests after the first one. Is there any simple solution ?
Thanks !