2014-11-05 14:46:27 -05:00
|
|
|
<h3>{{title}}</h3>
|
2013-02-27 22:39:42 -05:00
|
|
|
|
2014-11-05 14:46:27 -05:00
|
|
|
<div>
|
|
|
|
{{i18n admin.dashboard.reports.start_date}} {{input type="date" value=startDate}}
|
|
|
|
{{i18n admin.dashboard.reports.end_date}} {{input type="date" value=endDate}}
|
|
|
|
<button {{action refreshReport}} class='btn btn-primary'>{{i18n admin.dashboard.reports.refresh_report}}</button>
|
|
|
|
</div>
|
2013-03-17 15:02:36 -04:00
|
|
|
|
2014-11-05 14:46:27 -05:00
|
|
|
<div class='view-options'>
|
|
|
|
{{#if viewingTable}}
|
|
|
|
{{i18n admin.dashboard.reports.view_table}}
|
|
|
|
{{else}}
|
|
|
|
<a href {{action "viewAsTable"}}>{{i18n admin.dashboard.reports.view_table}}</a>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
|
{{#if viewingBarChart}}
|
|
|
|
{{i18n admin.dashboard.reports.view_chart}}
|
|
|
|
{{else}}
|
|
|
|
<a href {{action "viewAsBarChart"}}>{{i18n admin.dashboard.reports.view_chart}}</a>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
2013-03-17 15:02:36 -04:00
|
|
|
|
2014-11-05 14:46:27 -05:00
|
|
|
{{#if refreshing}}
|
|
|
|
{{loading-spinner}}
|
|
|
|
{{else}}
|
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>
|
|
|
|
|
2014-06-06 17:08:35 -04:00
|
|
|
{{#each row in dataReversed}}
|
2013-02-27 22:39:42 -05:00
|
|
|
<tr>
|
2013-05-20 13:42:26 -04:00
|
|
|
<td>{{row.x}}</td>
|
2013-03-17 15:02:36 -04:00
|
|
|
<td>
|
2013-05-20 13:42:26 -04:00
|
|
|
{{#if viewingTable}}
|
|
|
|
{{row.y}}
|
2013-03-17 15:02:36 -04:00
|
|
|
{{/if}}
|
2013-05-20 13:42:26 -04:00
|
|
|
{{#if viewingBarChart}}
|
2013-03-17 15:02:36 -04:00
|
|
|
<div class='bar-container'>
|
2013-05-20 13:42:26 -04:00
|
|
|
<div class='bar' style="width: {{unbound row.percentage}}%">{{row.y}}</div>
|
2013-03-17 15:02:36 -04:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
</td>
|
2013-02-27 22:39:42 -05:00
|
|
|
</tr>
|
|
|
|
{{/each}}
|
|
|
|
</table>
|
2014-01-14 12:48:57 -05:00
|
|
|
{{/if}}
|