zentaopms/module/testreport/view/blockbuilds.html.php
2023-05-16 10:47:08 +08:00

26 lines
1.1 KiB
PHP

<?php $sysURL = $this->session->notHead ? common::getSysURL() : '';?>
<table class='table main-table' id='builds'>
<thead>
<tr>
<th class='c-id'> <?php echo $lang->build->id;?></th>
<th class='text-left'><?php echo $lang->build->name;?></th>
<th class='c-user'> <?php echo $lang->build->builder;?></th>
<th class='c-date'> <?php echo $lang->build->date;?></th>
</tr>
</thead>
<?php if($builds):?>
<tbody>
<?php foreach($builds as $build):?>
<tr>
<td><?php echo sprintf('%03d', $build->id) . html::hidden('builds[]', $build->id)?></td>
<td class='text-left c-name' title='<?php echo $build->name?>'><?php echo html::a($sysURL . $this->createLink('build', 'view', "buildID=$build->id", '', true), $build->name, '', "data-toggle='modal' data-type='iframe' data-width='90%'");?></td>
<td><?php echo zget($users, $build->builder);?></td>
<td><?php echo $build->date;?></td>
</tr>
<?php endforeach;?>
</tbody>
<?php else:?>
<tr><td class='none-data' colspan='4'><?php echo 'Trunk'?></td></tr>
<?php endif;?>
</table>