zentaopms/module/execution/view/m.index.html.php
2023-05-16 10:47:08 +08:00

11 lines
398 B
PHP

<?php $bodyClass = 'with-nav-bottom';?>
<?php include '../../common/view/m.header.html.php';?>
<?php if(empty($executions)):?>
<div class="text-center">
<p><span class="text-muted"><?php echo $lang->execution->noExecution;?></span></p>
</div>
<?php else:?>
<?php echo $this->fetch('block', 'dashboard', 'module=execution');?>
<?php endif;?>
<?php include '../../common/view/m.footer.html.php';?>