2018-05-03 21:41:41 +08:00
|
|
|
{{#conditional-loading-section isLoading=isLoading title=report.title}}
|
2018-04-16 16:42:06 +08:00
|
|
|
<div class="table-title">
|
2018-05-03 21:41:41 +08:00
|
|
|
<h3>{{report.title}}</h3>
|
2018-04-16 16:42:06 +08:00
|
|
|
|
|
|
|
{{#if help}}
|
|
|
|
<a href="{{helpPage}}">{{i18n help}}</a>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="table-container">
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
{{#each labels as |label|}}
|
|
|
|
<th>{{label}}</th>
|
|
|
|
{{/each}}
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2018-05-03 21:41:41 +08:00
|
|
|
{{#each values as |value|}}
|
|
|
|
<td>{{number value}}</td>
|
2018-04-16 16:42:06 +08:00
|
|
|
{{/each}}
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2018-05-03 21:41:41 +08:00
|
|
|
{{/conditional-loading-section}}
|