Aloha!

I have a repeatable date field with start and end date. Accessing the field data with field tokens by:

[node:field-date:0:value:custom:d. F Y]

displays the start date for example like

29. June 2017

which is expected.

How can I display all stored dates in a custom format?

[node:field_date]

will display all start and end dates as

2017-06-22T16:30:00 to 2017-06-22T18:00:00, 2017-07-06T16:30:00 to 2017-07-06T18:00:00, 2017-07-13T16:30:00 to 2017-07-13T18:00:00

(with underscore, normal 'minus -' will display 'Property 1, Property 2..')

[node:field_date:value:custom:d. F Y] or
[node:field_date:custom:d. F Y]

Do not do the trick. I tinkered and tried variations, basicly I'm looking for the value to replace the '0' in [node:field-date:0:value:... with the value that means 'all'.

I literally tried 'all', 'full', '0-12', '::' etc. Nothing seems to work : /

Further ideas?