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()
|
2014-07-16 19:31:10 +00:00
|
|
|
message-$(payloadTiddler)$
|
2014-07-12 08:09:36 +00:00
|
|
|
\end
|
|
|
|
\define selectionField()
|
2014-07-16 19:31:10 +00:00
|
|
|
selection-$(payloadTiddler)$
|
2014-07-12 08:09:36 +00:00
|
|
|
\end
|
2014-07-17 17:42:04 +00:00
|
|
|
\define previewPopupState()
|
|
|
|
!!popup-$(payloadTiddler)$
|
|
|
|
\end
|
2014-07-12 08:09:36 +00:00
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
<<lingo Listing/Select/Caption>>
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
<<lingo Listing/Title/Caption>>
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
<<lingo Listing/Status/Caption>>
|
|
|
|
</th>
|
|
|
|
</tr>
|
2014-07-16 19:31:10 +00:00
|
|
|
<$list filter="[all[current]plugintiddlers[]sort[title]]" variable="payloadTiddler">
|
2014-07-12 08:09:36 +00:00
|
|
|
<tr>
|
|
|
|
<td>
|
2014-07-16 19:31:10 +00:00
|
|
|
<$checkbox field=<<selectionField>> checked="checked" unchecked="unchecked" default="checked"/>
|
2014-07-12 08:09:36 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2014-07-17 17:42:04 +00:00
|
|
|
<$reveal type="nomatch" state=<<previewPopupState>> text="yes">
|
2014-08-28 21:22:40 +00:00
|
|
|
<$button class="tc-btn-invisible tc-btn-dropdown" set=<<previewPopupState>> setTo="yes">
|
2014-07-18 19:00:05 +00:00
|
|
|
{{$:/core/images/right-arrow}} <$text text=<<payloadTiddler>>/>
|
2014-07-17 17:42:04 +00:00
|
|
|
</$button>
|
|
|
|
</$reveal>
|
|
|
|
<$reveal type="match" state=<<previewPopupState>> text="yes">
|
2014-08-28 21:22:40 +00:00
|
|
|
<$button class="tc-btn-invisible tc-btn-dropdown" set=<<previewPopupState>> setTo="no">
|
2014-07-18 19:00:05 +00:00
|
|
|
{{$:/core/images/down-arrow}} <$text text=<<payloadTiddler>>/>
|
2014-07-17 17:42:04 +00:00
|
|
|
</$button>
|
|
|
|
</$reveal>
|
2014-07-12 08:09:36 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2014-07-16 19:31:10 +00:00
|
|
|
<$view field=<<messageField>>/>
|
2014-07-12 08:09:36 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2014-07-17 17:42:04 +00:00
|
|
|
<tr>
|
|
|
|
<td colspan="3">
|
|
|
|
<$reveal type="match" text="yes" state=<<previewPopupState>>>
|
|
|
|
<$transclude subtiddler=<<payloadTiddler>> mode="block"/>
|
|
|
|
</$reveal>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2014-07-12 08:09:36 +00:00
|
|
|
</$list>
|
|
|
|
</tbody>
|
|
|
|
</table>
|