instancesblock.html.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php $this->app->loadLang('instance');?>
  2. <?php js::set('instanceIdList', helper::arrayColumn($instances, 'id'));?>
  3. <div class="cell main-table instance-container">
  4. <h3 class='text-center'><?php echo $lang->instance->runningService;?></h3>
  5. <?php if(empty($instances)):?>
  6. <div class="table-empty-tip">
  7. <p><span class="text-muted"><?php echo $lang->instance->empty;?></span></p>
  8. </div>
  9. <?php else:?>
  10. <table class="table">
  11. <thead>
  12. <tr>
  13. <th><?php echo $lang->instance->name;?></th>
  14. <th><?php echo $lang->instance->version;?></th>
  15. <th class='w-180px'><?php echo $lang->instance->status?></th>
  16. <th><?php echo $lang->instance->cpu;?></th>
  17. <th><?php echo $lang->instance->mem;?></th>
  18. </tr>
  19. </thead>
  20. <tbody>
  21. <?php foreach($instances as $instance):?>
  22. <tr>
  23. <td><?php echo html::a($this->createLink('instance', 'view', "id=$instance->id"), $instance->name);?></td>
  24. <td><?php echo $instance->appVersion;?></td>
  25. <td class="instance-status" instance-id="<?php echo $instance->id;?>" data-status="<?php echo $instance->status;?>">
  26. <?php echo $this->instance->printStatus($instance, false);?>
  27. <?php if(commonModel::isDemoAccount()):?>
  28. <span class="count-down label label-outline label-danger" data-created-at="<?php echo strtotime($instance->createdAt);?>">
  29. <span><?php echo $lang->instance->leftTime;?></span>
  30. <span class='left-time'>00:00</span>
  31. </span>
  32. <?php endif;?>
  33. </td>
  34. <?php $metrics= zget($instancesMetrics, $instance->id);?>
  35. <td><?php $this->instance->printCpuUsage($instance, $metrics->cpu);?></td>
  36. <td><?php $this->instance->printMemUsage($instance, $metrics->memory);?></td>
  37. </tr>
  38. <?php endforeach;?>
  39. </tbody>
  40. </table>
  41. <div class="table-footer"><?php echo $pager->show('right', 'pagerjs');?></div>
  42. <?php endif;?>
  43. </div>