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 @@
<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' => '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' => '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' => '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>Vote</th>
<th><a href="<?php echo $this->url(array('sort' => 'voteResult')); ?>">Vote</th>
</tr>
<?php foreach ($this->data as $row) { ?>
<tr>
......@@ -32,7 +32,7 @@
<td><?php echo $row->getDifference(); ?></td>
<td><?php if($row->getIS()) echo 'Yes'; ?></td>
<td><?php echo implode(',', $row->getEsAreas()); ?></td>
<td>?</td>
<!-- td>?</td -->
<td><?php echo $row->getCrosslist(); ?></td>
<td><?php echo $row->getVoteResult(); ?></td>
</tr>
......
......@@ -2,7 +2,12 @@
<h3>Summary Reports</h3>
<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>
<a href="<?php echo $this->url(array('type' => 'summary',
'month' => date('n', $startDate->getTimestamp()),
......
......@@ -5,7 +5,7 @@
font-family: sans-serif;
}
#creqMain a {
#results a {
color: inherit;
text-decoration: inherit;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment