Select Git revision
weekly.phtml
-
Tim Steiner authoredTim Steiner authored
weekly.phtml 1.99 KiB
<?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/iace/reports/weekly.css', 'all'); ?>
<?php $this->layout()->tagline = ''; ?>
<?php $this->layout()->hideMenu = true; ?>
<h2>
ACE Certified Courses<br />
Interim ACE Committee<br />
Week Ending <?php echo date('F j, Y', $this->endDate->getTimestamp()); ?>
</h2>
<table>
<tr>
<th><a href="<?php echo $this->url(array('sort' => 'slo')); ?>">SLO</a></th>
<th><a href="<?php echo $this->url(array('sort' => 'college')); ?>">College</a></th>
<th><a href="<?php echo $this->url(array('sort' => 'course')); ?>">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' => 'finalizeTime')); ?>">Certified</a></th>
</tr>
<?php foreach ($this->data as $record) { ?>
<tr <?php if ($rowCount++ % 2) { ?>class="even"<?php } ?>>
<td>
<a href="<?php echo $this->baseUrl(); ?>/courses/view/print/id/<?php echo $record->getRequestId(); ?>">
<?php echo $record->getSlo(); ?>
</a>
</td>
<td>
<a href="<?php echo $this->baseUrl(); ?>/courses/view/print/id/<?php echo $record->getRequestId(); ?>">
<?php echo $record->getCollege(); ?>
</a>
</td>
<td>
<a href="<?php echo $this->baseUrl(); ?>/courses/view/print/id/<?php echo $record->getRequestId(); ?>">
<?php echo $record->getCourseCode(); ?>
</a>
</td>
<td>
<a href="<?php echo $this->baseUrl(); ?>/courses/view/print/id/<?php echo $record->getRequestId(); ?>">
<?php echo $record->getTitle(); ?>
</a>
</td>
<td>
<a href="<?php echo $this->baseUrl(); ?>/courses/view/print/id/<?php echo $record->getRequestId(); ?>">
<?php echo date('n/j/Y', $record->getFinalizeTime()); ?>
</a>
</td>
</tr>
<? } ?>
</table>