mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
29 lines
613 B
Handlebars
29 lines
613 B
Handlebars
{{#conditional-loading-section isLoading=isLoading title=report.title}}
|
|
<div class="table-title">
|
|
<h3>{{report.title}}</h3>
|
|
|
|
{{#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>
|
|
{{#each values as |value|}}
|
|
<td>{{number value}}</td>
|
|
{{/each}}
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{{/conditional-loading-section}}
|