2019-02-02 22:34:48 +00:00
|
|
|
<table class="pi-horizontal-group{{#unless renderLabels}} pi-horizontal-group-no-labels{{/unless}}"{{#if item-name}} data-item-name="{{item-name}}"{{/if}}>
|
2018-08-09 09:41:31 +00:00
|
|
|
{{#if header}}<caption class="pi-header pi-secondary-font pi-secondary-background pi-item-spacing"{{#if inlineStyles}} style="{{inlineStyles}}"{{/if}}>{{{header}}}</caption>{{/if}}
|
2018-08-08 09:31:33 +00:00
|
|
|
{{#if renderLabels}}
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2018-12-27 01:01:19 +00:00
|
|
|
{{#each data}}
|
2019-02-02 22:34:48 +00:00
|
|
|
<th class="pi-horizontal-group-item pi-data-label pi-secondary-font pi-border-color pi-item-spacing"{{#if source}} data-source="{{source}}"{{/if}}{{#if item-name}} data-item-name="{{item-name}}"{{/if}}>{{{label}}}</th>
|
2018-08-08 09:31:33 +00:00
|
|
|
{{/each}}
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{{/if}}
|
|
|
|
<tbody>
|
2018-12-27 01:01:19 +00:00
|
|
|
<tr>
|
|
|
|
{{#each data}}
|
2019-02-02 22:34:48 +00:00
|
|
|
<td class="pi-horizontal-group-item pi-data-value pi-font pi-border-color pi-item-spacing"{{#if source}} data-source="{{source}}"{{/if}}{{#if item-name}} data-item-name="{{item-name}}"{{/if}}>{{{value}}}</td>
|
2018-12-27 01:01:19 +00:00
|
|
|
{{/each}}
|
|
|
|
</tr>
|
2018-08-08 09:31:33 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|