<$list filter="[<currentTiddler>is[tiddler]]"> <$link /> </$list>
<$list filter="[<currentTiddler>is[missing]]">
<$button class="tc-btn-invisible tc-tiddlylink"> <<currentTiddler>>
<$action-createtiddler $basetitle=<<currentTiddler>> $template="NewEditionTemplate" aa="new field aa" bb="new field bb" />
<$action-navigate to=<<currentTiddler>> />
</$button>
</$list>
</$list>
Notes:
* The first inner $list widget uses the "shorthand" <$link /> syntax to link to the currentTiddler
* The second inner $list widget displays a $button that looks like a link that
A) creates the missing tiddler using NewEditionTemplate (if defined), as well as a few other fields defined "inline"
B) navigates to the newly created tiddler
enjoy,
-e