m.projectblock.html.php 2.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <table class='table bordered'>
  2. <thead>
  3. <tr>
  4. <th class='c-name'><?php echo $lang->project->name;?></th>
  5. <th class='w-80px'><?php echo $lang->project->PM;?></th>
  6. <th class='w-60px'><?php echo $lang->project->status;?></th>
  7. <th class='w-90px text-right'><?php echo $lang->task->consumed;?></th>
  8. <th class='w-80px text-right'><?php echo $lang->project->budget;?></th>
  9. <th class='w-80px'><?php echo $lang->project->leftStories;?></th>
  10. <th class='w-80px'><?php echo $lang->project->leftTasks;?></th>
  11. <th class='w-80px'><?php echo $lang->project->leftBugs;?></th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. <?php foreach($projects as $project):?>
  16. <?php $viewLink = $this->createLink('project', 'view', "programID={$project->id}");?>
  17. <tr data-id='<?php echo $project->id;?>' data-url='<?php echo $viewLink;?>'>
  18. <td title='<?php echo $project->name?>'><?php echo $project->name;?></td>
  19. <td><?php echo zget($users, $project->PM, $project->PM)?></td>
  20. <td class='c-status'>
  21. <span class="status-program status-<?php echo $project->status?>"><?php echo zget($lang->project->statusList, $project->status);?></span>
  22. </td>
  23. <td class='text-right' title="<?php echo $project->consumed . ' ' . $lang->execution->workHour;?>"><?php echo $project->consumed . $lang->execution->workHourUnit;?></td>
  24. <?php $programBudget = in_array($this->app->getClientLang(), ['zh-cn','zh-tw']) ? round((float)$project->budget / 10000, 2) . $this->lang->project->tenThousand : round((float)$project->budget, 2);?>
  25. <td class='text-right'><?php echo $project->budget != 0 ? zget($lang->project->currencySymbol, $project->budgetUnit) . ' ' . $programBudget : $lang->project->future;?></td>
  26. <td class='text-center'><?php echo $project->leftStories;?></td>
  27. <td class='text-center'><?php echo $project->leftTasks;?></td>
  28. <td class='text-center'><?php echo $project->leftBugs;?></td>
  29. </tr>
  30. <?php endforeach;?>
  31. </tbody>
  32. </table>