Files
EasySoft-ZenTaoPMS/module/testreport/view/blockbuilds.html.php
T
2017-03-09 17:21:09 +08:00

30 lines
1002 B
PHP

<tr>
<th class='text-top'><?php echo $lang->testreport->builds?></th>
<td colspan='2'>
<?php if($builds):?>
<table class='table' id='builds'>
<thead>
<tr>
<th class='w-id'> <?php echo $lang->build->id;?></th>
<th> <?php echo $lang->build->name;?></th>
<th class='w-user'><?php echo $lang->build->builder;?></th>
<th class='w-date'><?php echo $lang->build->date;?></th>
</tr>
</thead>
<tbody class='text-center'>
<?php foreach($builds as $build):?>
<tr>
<td><?php echo $build->id . html::hidden('builds[]', $build->id)?></td>
<td class='text-left' title='<?php echo $build->name?>'><?php echo $build->name?></td>
<td><?php echo zget($users, $build->builder);?></td>
<td><?php echo $build->date;?></td>
</tr>
<?php endforeach;?>
</tbody>
</table>
<?php else:?>
<?php echo 'Trunk'?>
<?php endif;?>
</td>
</tr>