2015-07-04 00:00:59 +08:00
|
|
|
<h3>{{model.title}}</h3>
|
2013-02-28 11:39:42 +08:00
|
|
|
|
2014-11-06 03:46:27 +08:00
|
|
|
<div>
|
2014-12-09 05:35:49 +08:00
|
|
|
{{i18n 'admin.dashboard.reports.start_date'}} {{input type="date" value=startDate}}
|
|
|
|
{{i18n 'admin.dashboard.reports.end_date'}} {{input type="date" value=endDate}}
|
2015-07-04 00:58:13 +08:00
|
|
|
{{combo-box valueAttribute="value" content=categoryOptions value=categoryId}}
|
2015-01-15 04:36:38 +08:00
|
|
|
{{d-button action="refreshReport" class="btn-primary" label="admin.dashboard.reports.refresh_report" icon="refresh"}}
|
2015-09-16 04:45:01 +08:00
|
|
|
{{d-button action="exportCsv" label="admin.export_csv.button_text"}}
|
2014-11-06 03:46:27 +08:00
|
|
|
</div>
|
2013-03-18 03:02:36 +08:00
|
|
|
|
2014-11-06 03:46:27 +08:00
|
|
|
<div class='view-options'>
|
|
|
|
{{#if viewingTable}}
|
2014-12-09 05:35:49 +08:00
|
|
|
{{i18n 'admin.dashboard.reports.view_table'}}
|
2014-11-06 03:46:27 +08:00
|
|
|
{{else}}
|
2014-12-09 05:35:49 +08:00
|
|
|
<a href {{action "viewAsTable"}}>{{i18n 'admin.dashboard.reports.view_table'}}</a>
|
2014-11-06 03:46:27 +08:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
|
{{#if viewingBarChart}}
|
2014-12-09 05:35:49 +08:00
|
|
|
{{i18n 'admin.dashboard.reports.view_chart'}}
|
2014-11-06 03:46:27 +08:00
|
|
|
{{else}}
|
2014-12-09 05:35:49 +08:00
|
|
|
<a href {{action "viewAsBarChart"}}>{{i18n 'admin.dashboard.reports.view_chart'}}</a>
|
2014-11-06 03:46:27 +08:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
2013-03-18 03:02:36 +08:00
|
|
|
|
2015-04-29 05:05:06 +08:00
|
|
|
{{#conditional-loading-spinner condition=refreshing}}
|
2013-03-18 03:02:36 +08:00
|
|
|
<table class='table report'>
|
2013-02-28 11:39:42 +08:00
|
|
|
<tr>
|
2015-07-04 00:00:59 +08:00
|
|
|
<th>{{model.xaxis}}</th>
|
|
|
|
<th>{{model.yaxis}}</th>
|
2013-02-28 11:39:42 +08:00
|
|
|
</tr>
|
|
|
|
|
2015-07-04 00:00:59 +08:00
|
|
|
{{#each row in model.dataReversed}}
|
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>
|
2015-04-29 05:05:06 +08:00
|
|
|
{{/conditional-loading-spinner}}
|