2018-05-16 02:12:03 +08:00
|
|
|
{{#conditional-loading-section isLoading=isLoading title=loadingTitle}}
|
|
|
|
<div class="dashboard-mini-statuses">
|
|
|
|
{{#each-in reports as |key report|}}
|
|
|
|
<div class="dashboard-mini-status" title="{{report.trendTitle}}">
|
|
|
|
<span class="indicator" style="background-color:{{report.color}}"></span>
|
|
|
|
<div class="legend">
|
|
|
|
<h4 class="title">
|
|
|
|
<a href="{{report.reportUrl}}">
|
|
|
|
{{report.title}}
|
|
|
|
</a>
|
|
|
|
</h4>
|
2018-05-03 21:41:41 +08:00
|
|
|
|
2018-05-16 02:12:03 +08:00
|
|
|
<div class="trend">
|
|
|
|
<span class="value" title="{{report.trendTitle}}">
|
|
|
|
{{#if report.average}}
|
|
|
|
{{report.currentAverage}}
|
|
|
|
{{else}}
|
|
|
|
{{number report.currentTotal noTitle="true"}}
|
|
|
|
{{/if}}
|
|
|
|
</span>
|
|
|
|
{{#if report.trendIcon}}
|
|
|
|
{{d-icon report.trendIcon}}
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/each-in}}
|
2018-04-16 16:42:06 +08:00
|
|
|
</div>
|
|
|
|
|
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}}
|