Hi Nuryana, I would recommend you use the same date-format as TiddlyWiki itself does for the modified and created fields, e.g.:
*YYYY0MM0DD0hh0mm0ss* => 20151217181532 or just 20151217 This will allow you to properly use the ViewWidget <http://tiddlywiki.com/#ViewWidget> to output those links. As for your list, you simply use a.... ListWidget <http://tiddlywiki.com/#ListWidget> (or list transclusion <http://tiddlywiki.com/#Transclusion%20in%20WikiText> as below) alongside a template, e.g.: <dl> {{{ [tag[foo]] ||$:/_my/templates/due-and-schedule}}} </dl> And then: title: $:/_my/templates/due-and-schedule <dt><$link><$view field="title"/></$link></dt> <dd>''due:'' <$view field="due" format="date"/></dd> <dd>''schedule:'' <$view field="schedule" format="date"/></dd> The above uses a definition list to group the fields with their titles, so - *dl* — the definition list wrapper - *dt* — a definition term - *dd* — its definition(s) Notice how the *dl *is not part of the template. While that's not actually needed, it is semantically more correct, otherwise you would create as many definition lists as you would have items, rather than one list that contains a given number of terms and their definitions. Best wishes, Tobias. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/tiddlywiki. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/58f3ed79-6f82-4d21-955a-10fa5cf332cf%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

