Hi,
I'd like to get a list of all Tiddlers, that have the field "due" which has the value of the current date.
That's the code I have so far:
<$set name=today value=<<now 0DD.0MM.YYYY>>>
<<today>>
</$set>
<$list filter="[due[<today>]]">
<$checkbox tag="done"> <$link to={{!!title}}><$view field="title"/></$link> <$list filter="[is[current]tags[]regexp[PRIO0|onhold|BLOCKED]]">{{||$:/core/ui/TagTemplate}}</$list> </$checkbox>
</$list>
The setting of the variable "today" works, as the output of it works, but when I use it in the filter, it doesn't work.
On the other hand, when I put in the date, e.g. "20.07.2016" I get results.
I not only tried "[due[<today>]]" but also "[due<today>]", "[due[{today}]]".
What do I do wrong?
Regards,
Bastian