{{#if ../flatTable}} {{id}} {{#each ../columnNames}} {{lookup ../data this}} {{/each}} {{else}} {{kebabToTitleCase id}} {{#if (isObject data)}} {{> table-template.html rows=(objectEntries data) headers=false flatTable=false hasRows=true isNested=true}} {{else if (isArray data)}} {{#each data}} {{#if (isObject this)}} {{> table-template.html rows=(objectEntries this) headers=false flatTable=false hasRows=true isNested=true}} {{else}} {{this}}{{#unless @last}}, {{/unless}} {{/if}} {{/each}} {{else}} {{data}} {{/if}} {{/if}}