{{#if model.computedLabels}}
{{#each model.computedLabels as |label index|}}
{{admin-report-table-header
showSortingUI=showSortingUI
currentSortDirection=sortDirection
currentSortLabel=sortLabel
label=label
sortByLabel=(action "sortByLabel" label)}}
{{/each}}
{{else}}
{{#each model.data as |data|}}
| {{data.x}} |
{{/each}}
{{/if}}
{{#each paginatedData as |data|}}
{{admin-report-table-row data=data labels=model.computedLabels}}
{{/each}}
{{#if showTotalForSample}}
{{i18n 'admin.dashboard.reports.totals_for_sample'}}
{{#each totalsForSample as |total|}}
| {{total.formatedValue}} |
{{/each}}
{{/if}}
{{#if showTotal}}
{{i18n 'admin.dashboard.reports.total'}}
{{/if}}