2013-02-28 10:00:54 -05:00
|
|
|
{{#if loaded}}
|
|
|
|
<h3>{{title}}</h3>
|
2013-02-27 22:39:42 -05:00
|
|
|
|
2013-03-17 15:02:36 -04:00
|
|
|
<button class='btn'
|
|
|
|
{{action viewAsTable}}
|
2013-03-23 13:06:28 -04:00
|
|
|
{{bindAttr disabled="viewingTable"}}>{{i18n admin.dashboard.reports.view_table}}</button>
|
2013-03-17 15:02:36 -04:00
|
|
|
|
|
|
|
<button class='btn'
|
|
|
|
{{action viewAsBarChart}}
|
2013-03-23 13:06:28 -04:00
|
|
|
{{bindAttr disabled="viewingBarChart"}}>{{i18n admin.dashboard.reports.view_chart}}</button>
|
2013-03-17 15:02:36 -04:00
|
|
|
|
|
|
|
<table class='table report'>
|
2013-02-27 22:39:42 -05:00
|
|
|
<tr>
|
2013-02-28 10:00:54 -05:00
|
|
|
<th>{{xaxis}}</th>
|
|
|
|
<th>{{yaxis}}</th>
|
2013-02-27 22:39:42 -05:00
|
|
|
</tr>
|
|
|
|
|
2013-02-28 10:00:54 -05:00
|
|
|
{{#each data}}
|
2013-02-27 22:39:42 -05:00
|
|
|
<tr>
|
|
|
|
<td>{{x}}</td>
|
2013-03-17 15:02:36 -04:00
|
|
|
<td>
|
|
|
|
{{#if controller.viewingTable}}
|
|
|
|
{{y}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if controller.viewingBarChart}}
|
|
|
|
<div class='bar-container'>
|
|
|
|
<div class='bar' style="width: {{unbound percentage}}%">{{y}}</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
</td>
|
2013-02-27 22:39:42 -05:00
|
|
|
</tr>
|
|
|
|
{{/each}}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{{else}}
|
|
|
|
{{i18n loading}}
|
|
|
|
{{/if}}
|