basicinfo.html.php 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. <table class="table table-bordered basicInfo">
  2. <tbody>
  3. <tr>
  4. <td rowspan='3'><strong><?php echo $lang->milestone->common;?></strong></td>
  5. <th><?php echo $lang->project->name;?></th>
  6. <td colspan='3'><?php echo $basicInfo->project->name;?></td>
  7. <th><?php echo $lang->execution->end;?></th>
  8. <td><?php echo $basicInfo->execution->end;?></td>
  9. </tr>
  10. <tr>
  11. <th><?php echo $lang->project->PM;?></th>
  12. <td><?php echo zget($users, $basicInfo->project->PM);?></td>
  13. <th><?php echo $lang->milestone->name;?></th>
  14. <td><?php echo $basicInfo->execution->name;?></td>
  15. <th><?php echo $lang->project->realEnd;?></th>
  16. <td><?php echo $basicInfo->execution->realEnd;?></td>
  17. </tr>
  18. <tr>
  19. <th><?php echo $lang->milestone->startedWeeks;?>
  20. <i class="icon icon-help" title="<?php echo $lang->milestone->startedWeekTip;?>"></i>
  21. </th>
  22. <td><?php echo $basicInfo->execution->startedWeeks;?></td>
  23. <th><?php echo $lang->milestone->finishedWeeks;?>
  24. <i class="icon icon-help" title="<?php echo $lang->milestone->finishedWeekTip;?>"></i>
  25. </th>
  26. <td><?php echo $basicInfo->execution->finishedWeeks;?></td>
  27. <th><?php echo $lang->milestone->offset;?></th>
  28. <td><?php echo $basicInfo->execution->offset;?></td>
  29. </tr>
  30. </tbody>
  31. </table>