Skip to content
Snippets Groups Projects
Commit cf3ab397 authored by Tim Steiner's avatar Tim Steiner
Browse files

Misc updates to UCC reports.

parent fc123adf
No related branches found
No related tags found
No related merge requests found
...@@ -11,13 +11,13 @@ ...@@ -11,13 +11,13 @@
<th><a href="<?php echo $this->url(array('sort' => 'time')); ?>">Date Approved</a></th> <th><a href="<?php echo $this->url(array('sort' => 'time')); ?>">Date Approved</a></th>
<th><a href="<?php echo $this->url(array('sort' => 'college')); ?>">College</a></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')); ?>">Dept/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' => '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' => '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' => '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 Section</a></th>
<th><a href="<?php echo $this->url(array('sort' => 'SF')); ?>">SF</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' => 'crosslist')); ?>">X-list</a></th>
<th>Vote</th> <th><a href="<?php echo $this->url(array('sort' => 'voteResult')); ?>">Vote</th>
</tr> </tr>
<?php foreach ($this->data as $row) { ?> <?php foreach ($this->data as $row) { ?>
<tr> <tr>
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
<td><?php echo $row->getDifference(); ?></td> <td><?php echo $row->getDifference(); ?></td>
<td><?php if($row->getIS()) echo 'Yes'; ?></td> <td><?php if($row->getIS()) echo 'Yes'; ?></td>
<td><?php echo implode(',', $row->getEsAreas()); ?></td> <td><?php echo implode(',', $row->getEsAreas()); ?></td>
<td>?</td> <!-- td>?</td -->
<td><?php echo $row->getCrosslist(); ?></td> <td><?php echo $row->getCrosslist(); ?></td>
<td><?php echo $row->getVoteResult(); ?></td> <td><?php echo $row->getVoteResult(); ?></td>
</tr> </tr>
......
...@@ -2,7 +2,12 @@ ...@@ -2,7 +2,12 @@
<h3>Summary Reports</h3> <h3>Summary Reports</h3>
<ul> <ul>
<?php for($startDate = clone $this->startDate; $startDate->isEarlier($this->endDate); $startDate->addMonth(1)) { ?> <?php
for ($startDate = clone $this->startDate; $startDate->isEarlier($this->endDate); $startDate->addMonth(1)) {
if (in_array($startDate->get(Zend_Date::MONTH), array(5,6,7,8))) {
continue;
}
?>
<li> <li>
<a href="<?php echo $this->url(array('type' => 'summary', <a href="<?php echo $this->url(array('type' => 'summary',
'month' => date('n', $startDate->getTimestamp()), 'month' => date('n', $startDate->getTimestamp()),
...@@ -15,7 +20,7 @@ ...@@ -15,7 +20,7 @@
<h3>Extended Reports</h3> <h3>Extended Reports</h3>
<ul> <ul>
<?php for($startDate = clone $this->startDate; $startDate->isEarlier($this->endDate); $startDate->addMonth(1)) { ?> <?php for ($startDate = clone $this->startDate; $startDate->isEarlier($this->endDate); $startDate->addMonth(1)) { ?>
<li> <li>
<a href="<?php echo $this->url(array('type' => 'extended', <a href="<?php echo $this->url(array('type' => 'extended',
'month' => date('n', $startDate->getTimestamp()), 'month' => date('n', $startDate->getTimestamp()),
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
font-family: sans-serif; font-family: sans-serif;
} }
#creqMain a { #results a {
color: inherit; color: inherit;
text-decoration: inherit; text-decoration: inherit;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment