zentaopms/extension/max/milestone/view/basicinfo.html.php
2023-05-16 10:50:42 +08:00

28 lines
1.1 KiB
PHP

<table class="table table-bordered basicInfo">
<tbody>
<tr>
<td rowspan='3'><strong><?php echo $lang->milestone->common;?></strong></td>
<th><?php echo $lang->project->name;?></th>
<td colspan='3'><?php echo $basicInfo->project->name;?></td>
<th><?php echo $lang->execution->end;?></th>
<td><?php echo $basicInfo->execution->end;?></td>
</tr>
<tr>
<th><?php echo $lang->project->PM;?></th>
<td><?php echo zget($users, $basicInfo->project->PM);?></td>
<th><?php echo $lang->milestone->name;?></th>
<td><?php echo $basicInfo->execution->name;?></td>
<th><?php echo $lang->project->realEnd;?></th>
<td><?php echo $basicInfo->execution->realEnd;?></td>
</tr>
<tr>
<th><?php echo $lang->milestone->startedWeeks;?></th>
<td><?php echo $basicInfo->execution->startedWeeks;?></td>
<th><?php echo $lang->milestone->finishedWeeks;?></th>
<td><?php echo $basicInfo->execution->finishedWeeks;?></td>
<th><?php echo $lang->milestone->offset;?></th>
<td><?php echo $basicInfo->execution->offset;?></td>
</tr>
</tbody>
</table>