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

46 lines
1.5 KiB
PHP

<?php
/**
* The build browse mobile view file of execution module of ZenTaoPMS.
*
* @copyright Copyright 2009-2016 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
* @author Fei Chen <chenfei@cnezsoft.com>
* @package execution
* @version $Id
* @link http://www.zentao.net
*/
include "../../common/view/m.header.html.php";
?>
<div class='heading'>
<div class='title'>
<strong><?php echo $lang->execution->build;?></strong>
</div>
</div>
<section id='page' class='section list-with-pager'>
<div class='box'>
<table class='table bordered no-margin'>
<thead>
<tr>
<th><?php echo $lang->build->product;?></th>
<th><?php echo $lang->build->name;?></th>
<th class='text-center w-140px'><?php echo $lang->build->date;?></th>
</tr>
</thead>
<?php foreach($executionBuilds as $builds):?>
<?php foreach($builds as $build):?>
<tr class= 'text-center' data-id='<?php echo $build->id ?>' data-url='<?php echo $this->createLink('build', 'view', 'buildID=' . $build->id);?>'>
<td class='text-left'><?php echo $build->productName;?></td>
<td class='text-left'><?php echo $build->name;?></td>
<td><?php echo $build->date;?></td>
</tr>
<?php endforeach;?>
<?php endforeach;?>
</table>
</div>
</section>
<?php include "../../common/view/m.footer.html.php"; ?>