41 lines
2.0 KiB
PHP
41 lines
2.0 KiB
PHP
<?php include '../../common/view/header.lite.html.php';?>
|
|
<div id='mainContent' class='main-content'>
|
|
<div class='main-header'>
|
|
<h2>
|
|
<span><?php echo html::icon($lang->icons['report']);?></span>
|
|
<?php echo $lang->story->cases;?>
|
|
</h2>
|
|
</div>
|
|
<div class='casesList'>
|
|
<table class='table table-fixed'>
|
|
<thead>
|
|
<tr class='text-center'>
|
|
<th class='c-id'> <?php echo $lang->idAB;?></th>
|
|
<th class='w-p30'> <?php echo $lang->testcase->title;?></th>
|
|
<th class='c-pri' title=<?php echo $lang->story->pri;?>><?php echo $lang->priAB;?></th>
|
|
<th class='c-type'> <?php echo $lang->testcase->type;?></th>
|
|
<th class='c-status'><?php echo $lang->statusAB;?></th>
|
|
<th class='c-user'> <?php echo $lang->testcase->lastRunner;?></th>
|
|
<th class='c-date'> <?php echo $lang->testcase->lastRunDate;?></th>
|
|
<th class='c-result'><?php echo $lang->testcase->lastRunResult;?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($cases as $key => $case):?>
|
|
<tr class='text-center'>
|
|
<td><?php echo $case->id;?></td>
|
|
<td class='text-left' title="<?php echo $case->title?>"><?php echo $case->title;?></td>
|
|
<td><span class='<?php echo 'pri' . zget($lang->testcase->priList, $case->pri, $case->pri)?>'><?php echo $case->pri == '0' ? '' : zget($lang->case->priList, $case->pri, $case->pri);?></span></td>
|
|
<td><?php echo $lang->testcase->typeList[$case->type];?></td>
|
|
<td><?php echo $this->processStatus('testcase', $case);?></td>
|
|
<td><?php echo zget($users, $case->lastRunner, $case->lastRunner);?></td>
|
|
<td><?php if(!helper::isZeroDate($case->lastRunDate)) echo date(DT_MONTHTIME1, strtotime($case->lastRunDate));?></td>
|
|
<td><?php echo $case->lastRunResult ? $lang->testcase->resultList[$case->lastRunResult] : '';?></td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<?php include '../../common/view/footer.lite.html.php';?>
|