From dd0776c28d4752e5ab6fecf0dea1c4d7c55a46b2 Mon Sep 17 00:00:00 2001 From: Tim Steiner <tsteiner2@unl.edu> Date: Tue, 6 Oct 2009 16:58:20 +0000 Subject: [PATCH] Minor changes to UCC summary report. --- .../ucc/views/scripts/reports/monthly-summary.phtml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/application/modules/ucc/views/scripts/reports/monthly-summary.phtml b/application/modules/ucc/views/scripts/reports/monthly-summary.phtml index 61b01ad3..27ceeeaf 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 -- GitLab