75 lines
3.2 KiB
PHP
75 lines
3.2 KiB
PHP
<table class='table-1 mt-10px'>
|
|
<caption><?php echo $lang->story->affectedProjects;?></caption>
|
|
|
|
<?php foreach($story->projects as $projectID => $project):?>
|
|
<tr>
|
|
<td class='a-center'><?php echo "<strong>$project->name</strong><br />"; ?> </td>
|
|
<td class='a-center'><?php foreach($story->teams[$projectID] as $member) echo $users[$member->account] . ' ';?></td>
|
|
<td>
|
|
<table class='table-1' style='margin:0'>
|
|
<tr class='colhead'>
|
|
<th><?php echo $lang->task->id;?></th>
|
|
<th><?php echo $lang->task->name;?></th>
|
|
<th><?php echo $lang->task->owner;?></th>
|
|
<th><?php echo $lang->task->status;?></th>
|
|
<th><?php echo $lang->task->consumed;?></th>
|
|
<th><?php echo $lang->task->left;?></th>
|
|
</tr>
|
|
<?php foreach($story->tasks[$projectID] as $task):?>
|
|
<tr class='a-center'>
|
|
<td><?php echo $task->id;?></td>
|
|
<td class='a-left'><?php echo html::a($this->createLink('task', 'view', "taskID=$task->id"), $task->name, '_blank');?></td>
|
|
<td><?php echo $users[$task->owner];?></td>
|
|
<td><?php echo $lang->task->statusList[$task->status];?></td>
|
|
<td><?php echo $task->consumed;?></td>
|
|
<td><?php echo $task->left;?></td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</table>
|
|
<table class='table-1'>
|
|
<caption><?php echo $lang->story->affectedBugs;?></caption>
|
|
<tr>
|
|
<th class='w-p10'><?php echo $lang->bug->id;?></th>
|
|
<th class='w-p40'><?php echo $lang->bug->title;?></th>
|
|
<th class='w-p10'><?php echo $lang->bug->status;?></th>
|
|
<th class='w-p10'><?php echo $lang->bug->openedBy;?></th>
|
|
<th><?php echo $lang->bug->resolvedBy;?></th>
|
|
<th><?php echo $lang->bug->resolution;?></th>
|
|
<th><?php echo $lang->bug->lastEditedBy;?></th>
|
|
</tr>
|
|
<?php foreach($story->bugs as $bug):?>
|
|
<tr class='a-center'>
|
|
<td><?php echo $bug->id;?></td>
|
|
<td class='a-left'><?php echo html::a($this->createLink('bug', 'view', "bugID=$bug->id"), $bug->title, '_blank');?></td>
|
|
<td><?php echo $lang->bug->statusList[$bug->status];?></td>
|
|
<td><?php echo $users[$bug->openedBy];?></td>
|
|
<td><?php echo $users[$bug->resolvedBy];?></td>
|
|
<td><?php echo $lang->bug->resolutionList[$bug->resolution];?></td>
|
|
<td><?php echo $users[$bug->lastEditedBy];?></td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</table>
|
|
<table class='table-1'>
|
|
<caption><?php echo $lang->story->affectedCases;?></caption>
|
|
<tr>
|
|
<th class='w-p10'><?php echo $lang->testcase->id;?></th>
|
|
<th class='w-p40'><?php echo $lang->testcase->title;?></th>
|
|
<th class='w-p10'><?php echo $lang->testcase->status;?></th>
|
|
<th class='w-p10'><?php echo $lang->testcase->openedBy;?></th>
|
|
<th><?php echo $lang->testcase->lastEditedBy;?></th>
|
|
</tr>
|
|
<?php foreach($story->cases as $case):?>
|
|
<tr class='a-center'>
|
|
<td><?php echo $case->id;?></td>
|
|
<td class='a-left'><?php echo html::a($this->createLink('testcase', 'view', "caseID=$case->id"), $case->title, '_blank');?></td>
|
|
<td><?php echo $lang->testcase->statusList[$case->status];?></td>
|
|
<td><?php echo $users[$case->openedBy];?></td>
|
|
<td><?php echo $users[$case->lastEditedBy];?></td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</table>
|