2018-05-16 22:45:21 +08:00
|
|
|
{{#conditional-loading-section isLoading=isLoading}}
|
|
|
|
{{#each reportsForPeriod as |report|}}
|
|
|
|
<div class="status">
|
|
|
|
<h4 class="title">
|
|
|
|
<a href="{{report.reportUrl}}">
|
|
|
|
{{report.title}}
|
|
|
|
</a>
|
2018-05-03 21:41:41 +08:00
|
|
|
|
2018-05-16 22:45:21 +08:00
|
|
|
<span class="info" data-tooltip="{{report.description}}">
|
|
|
|
{{d-icon "question-circle"}}
|
|
|
|
</span>
|
|
|
|
</h4>
|
|
|
|
|
|
|
|
<div class="trend {{report.trend}}">
|
|
|
|
<span class="trend-value" title="{{report.trendTitle}}">
|
|
|
|
{{#if report.average}}
|
2018-05-30 22:32:43 +08:00
|
|
|
{{number report.currentAverage ceil=true}}{{#if report.percent}}%{{/if}}
|
2018-05-16 22:45:21 +08:00
|
|
|
{{else}}
|
2018-05-30 22:32:43 +08:00
|
|
|
{{number report.currentTotal ceil=true noTitle="true"}}{{#if report.percent}}%{{/if}}
|
2018-05-16 22:45:21 +08:00
|
|
|
{{/if}}
|
|
|
|
</span>
|
|
|
|
|
|
|
|
{{#if report.trendIcon}}
|
|
|
|
{{d-icon report.trendIcon class="trend-icon"}}
|
|
|
|
{{/if}}
|
2018-05-16 02:12:03 +08:00
|
|
|
</div>
|
2018-05-16 22:45:21 +08:00
|
|
|
</div>
|
|
|
|
{{/each}}
|
2018-04-16 16:42:06 +08:00
|
|
|
|
2018-05-16 02:12:03 +08:00
|
|
|
<div class="chart-canvas-container">
|
|
|
|
<canvas class="chart-canvas"></canvas>
|
2018-04-16 16:42:06 +08:00
|
|
|
</div>
|
2018-05-03 21:41:41 +08:00
|
|
|
{{/conditional-loading-section}}
|