| 1 |
<?php if($arguments["chart"] && $arguments["chart"] != 'null'):?> |
| 2 |
<div class="wtotem_chart__diagram"> |
| 3 |
<div id="cpu-chart" class="line-chart" data-days="<?= $arguments["days"] ?>"> |
| 4 |
<div id="tooltipCpu" class="line-chart__tooltip"> |
| 5 |
<span id="countCpu"></span> |
| 6 |
</div> |
| 7 |
</div> |
| 8 |
</div> |
| 9 |
|
| 10 |
|
| 11 |
<script> |
| 12 |
drawCpuChart(<?=$arguments["chart"]?>); |
| 13 |
</script> |
| 14 |
|
| 15 |
<?php else:?> |
| 16 |
|
| 17 |
<!-- No data block --> |
| 18 |
<section class="wtotem_reports-no-data" style="height:300px" > |
| 19 |
<h2 class="visually-hidden"><?= wtsec_locale("no_data") ?></h2> |
| 20 |
<p class="wtotem_reports-no-data__text"> |
| 21 |
<?= wtsec_locale("has_no_action_ready_yet") ?> |
| 22 |
</p> |
| 23 |
</section> |
| 24 |
|
| 25 |
<?php endif; ?> |