A simple list of dates using a date picker

@sull-vitsy This creates a problem of timezones. When we select the date using $edit-date, it gets stored in the UTC timezone. When we click on ‘add dates’, the UTC values are picked as they are because the $action-setfield reads the field verbatim.

So, I changed the $edit-date widgets to the following to store the values in default TW format.

from <$edit-date tiddler="$:/state/list-dates/date1" field="text" format=<<format>> showTime use24hour/>
to <$edit-date tiddler="$:/state/list-dates/date2" field="text" format=<<format>> showTime use24hour/>

Now, in:

<$action-setfield $tiddler="$:/list-dates/date-list-pre" text={{{[{$:/state/list-dates/date1}addsuffix[ - ]addsuffix{$:/state/list-dates/date2}addsuffix<lbr>] +[addprefix{$:/list-dates/date-list-pre}] }}} />

the literal $:/state/list-dates/date1 needs to be replaced with <$view tiddler="$:/state/list-dates/date1" format="date" template="YYYY-0MM-0DD ddd 0hh:0mm" />

I tried several ways but I am not getting the syntax right.

How do I do that?