2013-02-28 23:00:54 +08:00
|
|
|
{{#if loaded}}
|
|
|
|
<h3>{{title}}</h3>
|
2013-02-28 11:39:42 +08:00
|
|
|
|
2013-03-18 03:02:36 +08:00
|
|
|
<button class='btn'
|
|
|
|
{{action viewAsTable}}
|
2014-01-15 01:48:57 +08:00
|
|
|
{{bind-attr disabled="viewingTable"}}>{{i18n admin.dashboard.reports.view_table}}</button>
|
2013-03-18 03:02:36 +08:00
|
|
|
|
|
|
|
<button class='btn'
|
|
|
|
{{action viewAsBarChart}}
|
2014-01-15 01:48:57 +08:00
|
|
|
{{bind-attr disabled="viewingBarChart"}}>{{i18n admin.dashboard.reports.view_chart}}</button>
|
2013-03-18 03:02:36 +08:00
|
|
|
|
|
|
|
<table class='table report'>
|
2013-02-28 11:39:42 +08:00
|
|
|
<tr>
|
2013-02-28 23:00:54 +08:00
|
|
|
<th>{{xaxis}}</th>
|
|
|
|
<th>{{yaxis}}</th>
|
2013-02-28 11:39:42 +08:00
|
|
|
</tr>
|
|
|
|
|
2013-05-21 01:42:26 +08:00
|
|
|
{{#each row in data}}
|
2013-02-28 11:39:42 +08:00
|
|
|
<tr>
|
2013-05-21 01:42:26 +08:00
|
|
|
<td>{{row.x}}</td>
|
2013-03-18 03:02:36 +08:00
|
|
|
<td>
|
2013-05-21 01:42:26 +08:00
|
|
|
{{#if viewingTable}}
|
|
|
|
{{row.y}}
|
2013-03-18 03:02:36 +08:00
|
|
|
{{/if}}
|
2013-05-21 01:42:26 +08:00
|
|
|
{{#if viewingBarChart}}
|
2013-03-18 03:02:36 +08:00
|
|
|
<div class='bar-container'>
|
2013-05-21 01:42:26 +08:00
|
|
|
<div class='bar' style="width: {{unbound row.percentage}}%">{{row.y}}</div>
|
2013-03-18 03:02:36 +08:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
</td>
|
2013-02-28 11:39:42 +08:00
|
|
|
</tr>
|
|
|
|
{{/each}}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{{else}}
|
|
|
|
{{i18n loading}}
|
2014-01-15 01:48:57 +08:00
|
|
|
{{/if}}
|