|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/irtiweb/CATS/modules/reports/ |
Upload File : |
<?php /* $Id: PlacedReport.tpl 2336 2007-04-14 22:01:51Z will $ */ ?>
<?php TemplateUtility::printHeader($this->reportTitle); ?>
<?php TemplateUtility::printHeaderBlock(); ?>
<table>
<tr>
<td width="3%">
<img src="images/reports.gif" width="24" height="24" border="0" alt="Reports" style="margin-top: 3px;" />
</td>
<td><h2><?php $this->_($this->reportTitle); ?></h2></td>
</tr>
</table>
<p class="note">Placements</p>
<?php foreach ($this->placementsJobOrdersRS as $rowNumber => $placementsJobOrdersData): ?>
<span style="font: normal normal bold 13px/130% Arial, Tahoma, sans-serif;"><?php $this->_($placementsJobOrdersData['title']) ?> at <?php $this->_($placementsJobOrdersData['companyName']) ?> (<?php $this->_($placementsJobOrdersData['ownerFullName']) ?>)</span>
<br />
<table class="sortable" width="925">
<tr>
<th align="left" nowrap="nowrap">First Name</th>
<th align="left" nowrap="nowrap">Last Name</th>
<th align="left" nowrap="nowrap">Candidate Owner</th>
<th align="left" nowrap="nowrap">Date Placed</th>
</tr>
<?php foreach ($placementsJobOrdersData['placementsRS'] as $rowNumber => $placementsData): ?>
<tr class="<?php TemplateUtility::printAlternatingRowClass($rowNumber); ?>">
<td valign="top" align="left"><?php $this->_($placementsData['firstName']) ?> </td>
<td valign="top" align="left"><?php $this->_($placementsData['lastName']) ?> </td>
<td valign="top" align="left"><?php $this->_($placementsData['ownerFullName']) ?> </td>
<td valign="top" align="left"><?php $this->_($placementsData['dateSubmitted']) ?> </td>
</tr>
<?php endforeach; ?>
</table>
<?php endforeach; ?>
<?php TemplateUtility::printReportFooter(); ?>