1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-29 08:43:14 +00:00
TiddlyWiki5/core/ui/ImportListing.tid

40 lines
702 B
Plaintext
Raw Normal View History

2014-07-14 20:52:32 +00:00
title: $:/core/ui/ImportListing
2014-07-12 08:09:36 +00:00
\define lingo-base() $:/language/Import/
\define messageField()
message-$(payloadTiddler)$
2014-07-12 08:09:36 +00:00
\end
\define selectionField()
selection-$(payloadTiddler)$
2014-07-12 08:09:36 +00:00
\end
<table>
<tbody>
<tr>
<th>
<<lingo Listing/Select/Caption>>
</th>
<th>
<<lingo Listing/Title/Caption>>
</th>
<th>
<<lingo Listing/Status/Caption>>
</th>
</tr>
<$list filter="[all[current]plugintiddlers[]sort[title]]" variable="payloadTiddler">
2014-07-12 08:09:36 +00:00
<tr>
<td>
<$checkbox field=<<selectionField>> checked="checked" unchecked="unchecked" default="checked"/>
2014-07-12 08:09:36 +00:00
</td>
<td>
<$link to=<<payloadTiddler>>>
<$text text=<<payloadTiddler>>/>
2014-07-12 08:09:36 +00:00
</$link>
</td>
<td>
<$view field=<<messageField>>/>
2014-07-12 08:09:36 +00:00
</td>
</tr>
</$list>
</tbody>
</table>