{{#if item.schema.fields}}
{{#each item.schema.fields}}
{{#when detail.format '!==' 'hide'}}
{{#notin 'created,updated' field.type}}
{{label}} |
{{#../item.original}}
{{#scope this ../@key}}
{{> change_value}}
{{else}}
{{#noop ../../item.noop}}
{{> change_value}}
{{/noop}}
{{/scope}}
{{/../item.original}}
|
{{#../item.current}}
{{#scope this ../@key}}
{{> change_value}}
{{else}}
{{#noop ../../item.noop}}
{{> change_value}}
{{/noop}}
{{/scope}}
{{/../item.current}}
|
{{/notin}}
{{/when}}
{{/each}}
{{else}}
{{#each item.current}}
{{@key}} |
{{#scope ../item.original @key}}
{{#is_array this}}
{{{json_pretty this}}}
{{else}}
{{this}}
{{/is_array}}
{{/scope}}
|
{{#scope ../item.current @key}}
{{#is_array this}}
{{{json_pretty this}}}
{{else}}
{{this}}
{{/is_array}}
{{/scope}}
|
{{/each}}
{{/if}}