m.executionstatisticblock.html.php 960 B

123456789101112131415161718
  1. <table class='table bordered'>
  2. <thead>
  3. <tr>
  4. <th><?php echo $title;?></th>
  5. <th class='text-center w-70px'><?php echo $lang->task->allTasks . DS . $lang->task->noFinished;?></th>
  6. <th class='text-center w-70px'><?php echo $lang->story->total . DS . $lang->story->unclosed;?></th>
  7. <th class='text-center w-70px'><?php echo $lang->bug->allBugs . DS . $lang->bug->unResolved;?></th>
  8. </tr>
  9. </thead>
  10. <?php foreach($projects as $project):?>
  11. <tr class= 'text-center' data-id='<?php echo $project->id ?>' data-url='<?php echo $this->createLink('project', 'task', 'projectID=' . $project->id);?>'>
  12. <td class='text-left'><?php echo $project->name;?></td>
  13. <td><?php echo $project->totalTasks . DS . $project->undoneTasks;?></td>
  14. <td><?php echo $project->totalStories . DS . $project->unclosedStories;?></td>
  15. <td><?php echo $project->totalBugs . DS . $project->activeBugs;?></td>
  16. </tr>
  17. <?php endforeach;?>
  18. </table>