mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 10:06:19 +00:00
33453039fc
All three were inadvertently showing the existing tiddler (if any), not the imported tiddler.
19 lines
520 B
Plaintext
19 lines
520 B
Plaintext
title: $:/core/ui/ImportPreviews/Fields
|
|
tags: $:/tags/ImportPreview
|
|
caption: {{$:/language/Import/Listing/Preview/Fields}}
|
|
|
|
<table class="tc-view-field-table">
|
|
<tbody>
|
|
<$list filter="[<payloadTiddler>subtiddlerfields<currentTiddler>sort[]] -text" variable="fieldName">
|
|
<tr class="tc-view-field">
|
|
<td class="tc-view-field-name">
|
|
<$text text=<<fieldName>>/>
|
|
</td>
|
|
<td class="tc-view-field-value">
|
|
<$view field=<<fieldName>> tiddler=<<currentTiddler>> subtiddler=<<payloadTiddler>>/>
|
|
</td>
|
|
</tr>
|
|
</$list>
|
|
</tbody>
|
|
</table>
|