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

57 lines
1.3 KiB
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
\define previewPopupState()
$(currentTiddler)$!!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>
<$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>
<$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}}&nbsp;<$text text=<<payloadTiddler>>/>
</$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}}&nbsp;<$text text=<<payloadTiddler>>/>
</$button>
</$reveal>
2014-07-12 08:09:36 +00:00
</td>
<td>
<$view field=<<messageField>>/>
2014-07-12 08:09:36 +00:00
</td>
</tr>
<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>