diff --git a/application/modules/ucc/views/scripts/reports/monthly-summary.phtml b/application/modules/ucc/views/scripts/reports/monthly-summary.phtml index 61b01ad3962dcc0e20c1fc4ec95f517515b78601..27ceeeaf531ca2fce9d8fbef319c051e1dbdfacb 100644 --- a/application/modules/ucc/views/scripts/reports/monthly-summary.phtml +++ b/application/modules/ucc/views/scripts/reports/monthly-summary.phtml @@ -8,20 +8,21 @@ <table id=""> <tr> - <th><a href="<?php echo $this->url(array('sort' => 'time')); ?>">Date Approved</a></th> + <th><a href="<?php echo $this->url(array('sort' => 'time')); ?>">Action Date</a></th> + <th><a href="<?php echo $this->url(array('sort' => 'voteResult')); ?>">Vote</th> <th><a href="<?php echo $this->url(array('sort' => 'college')); ?>">College</a></th> - <th><a href="<?php echo $this->url(array('sort' => 'courseCode')); ?>">Dept/Course #</a></th> + <th><a href="<?php echo $this->url(array('sort' => 'courseCode')); ?>">Subj/Course #</a></th> <th><a href="<?php echo $this->url(array('sort' => 'title')); ?>">Title</a></th> <th><a href="<?php echo $this->url(array('sort' => 'difference')); ?>">Action Requested</a></th> <th><a href="<?php echo $this->url(array('sort' => 'is')); ?>">IS</a></th> - <th><a href="<?php echo $this->url(array('sort' => 'esAreas')); ?>">ES Section</a></th> + <th><a href="<?php echo $this->url(array('sort' => 'esAreas')); ?>">ES</a></th> <!-- <th><a href="<?php echo $this->url(array('sort' => 'SF')); ?>">SF</a></th --> <th><a href="<?php echo $this->url(array('sort' => 'crosslist')); ?>">X-list</a></th> - <th><a href="<?php echo $this->url(array('sort' => 'voteResult')); ?>">Vote</th> </tr> <?php foreach ($this->data as $row) { ?> <tr> <td><?php echo date('m/d/Y', $row->getTime())?></td> + <td><?php echo $row->getVoteResult(); ?></td> <td><?php echo $row->getCollege(); ?></td> <td> <a href="<?php echo $this->baseUrl(); ?>/courses/public-view/view/id/<?php echo $row->getCourse(); ?>"> @@ -34,7 +35,6 @@ <td><?php echo implode(',', $row->getEsAreas()); ?></td> <!-- td>?</td --> <td><?php echo $row->getCrosslist(); ?></td> - <td><?php echo $row->getVoteResult(); ?></td> </tr> <?php } ?> </table> \ No newline at end of file