mirror of
https://github.com/discourse/discourse.git
synced 2025-03-03 11:24:08 +08:00
29 lines
582 B
Handlebars
29 lines
582 B
Handlebars
{{#if model.sortedData}}
|
|
<table class="table report {{model.type}}">
|
|
<tr>
|
|
<th>{{model.xaxis}}</th>
|
|
<th>{{model.yaxis}}</th>
|
|
</tr>
|
|
|
|
{{#each model.sortedData as |row|}}
|
|
<tr>
|
|
<td class="x-value">{{row.x}}</td>
|
|
<td>
|
|
{{row.y}}
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
|
|
{{#if model.total}}
|
|
<tr class="total-for-period">
|
|
<td class="x-value">
|
|
{{i18n 'admin.dashboard.reports.total_for_period'}}
|
|
</td>
|
|
<td>
|
|
{{model.total}}
|
|
</td>
|
|
</tr>
|
|
{{/if}}
|
|
</table>
|
|
{{/if}}
|