|
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: EEOReport.tpl 2441 2007-05-04 20:42:02Z brian $ */ ?>
<?php TemplateUtility::printHeader('EEO Reports', array('modules/joborders/validator.js', 'js/company.js', 'js/sweetTitles.js')); ?>
<?php TemplateUtility::printHeaderBlock(); ?>
<?php TemplateUtility::printTabs($this->active, $this->subActive); ?>
<div id="main">
<?php TemplateUtility::printQuickSearch(); ?>
<div id="contents">
<table>
<tr>
<td width="3%">
<img src="images/job_orders.gif" width="24" height="24" border="0" alt="Job Orders" style="margin-top: 3px;" />
</td>
<td><h2>Reports: EEO Report (Work In Progress)</h2></td>
</tr>
</table>
<p class="note">Generate a report on Equal Employment Opportunity Statistics.</p>
<form name="jobOrderReportForm" id="jobOrderReportForm" action="<?php echo(CATSUtility::getIndexName()); ?>" method="get">
<input type="hidden" name="m" value="reports">
<input type="hidden" name="a" value="generateEEOReportPreview">
<table>
<tr>
<td style="vertical-align: top;">
<table class="editTable" <?php if (isset($this->EEOReportStatistics)): ?>width="230"<?php else: ?>width="680"<?php endif; ?>>
<tr>
<td class="tdVertical" style="width: 75px;">
<label id="siteNameLabel" for="siteName">Date Range:</label>
</td>
<td class="tdData">
<input type="radio" name="period" value="all" <?php if ($this->modePeriod == 'all'): ?>checked<?php endif; ?>> All time<br />
<input type="radio" name="period" value="month" <?php if ($this->modePeriod == 'month'): ?>checked<?php endif; ?>> Last Month<br />
<input type="radio" name="period" value="week" <?php if ($this->modePeriod == 'week'): ?>checked<?php endif; ?>> Last Week<br />
</td>
</tr>
<tr>
<td class="tdVertical" style="width: 75px;">
<label id="companyNameLabel" for="companyName">Status:</label>
</td>
<td class="tdData">
<input type="radio" name="status" value="all" <?php if ($this->modeStatus == 'all'): ?>checked<?php endif; ?>> All<br />
<input type="radio" name="status" value="placed" <?php if ($this->modeStatus == 'placed'): ?>checked<?php endif; ?>> Placed<br />
<input type="radio" name="status" value="rejected" <?php if ($this->modeStatus == 'rejected'): ?>checked<?php endif; ?>> Not in Consideration<br />
</td>
</tr>
</table>
<input type="submit" class="button" name="submit" value="Preview Report" />
</td>
<?php if (isset($this->EEOReportStatistics)): ?>
<td style="vertical-align: top;">
<table class="selectView" width="705">
<tr>
<td class="tdVertical" style="padding:10px;">
<div style="text-align: center; font-size:25px; width:250px;">Report Preview:</div>
<br />
<?php if ($this->EEOSettingsRS['ethnicTracking'] == 1): ?>
<table>
<tr>
<td>
<img src="<?php echo($this->urlEthnicGraph); ?>">
</td>
<td style="vertical-align: top; padding:20px;">
<table style="border-collapse: collapse;" style="width:200px;">
<tr>
<td colspan="2">
<br />
Candidates by Ethnic Types:<br />
<br />
</td>
</tr>
<?php foreach ($this->EEOReportStatistics['rsEthnicStatistics'] as $data): ?>
<tr>
<td style="width:160px;">
<?php $this->_($data['EEOEthnicType']); ?>:
</td>
<td>
<?php $this->_($data['numberOfCandidates']); ?>
</td>
</tr>
<?php endforeach; ?>
</table>
</td>
</tr>
</table>
<?php endif; ?>
<br />
<br />
<?php if ($this->EEOSettingsRS['veteranTracking'] == 1): ?>
<table>
<tr>
<td>
<img src="<?php echo($this->urlVeteranGraph); ?>">
</td>
<td style="vertical-align: top; padding:20px;">
<table style="border-collapse: collapse;" style="width:200px;">
<tr>
<td colspan="2">
<br />
Candidates by Veteran Status:<br />
<br />
</td>
</tr>
<?php foreach ($this->EEOReportStatistics['rsVeteranStatistics'] as $data): ?>
<tr>
<td style="width:160px;">
<?php $this->_($data['EEOVeteranType']); ?>:
</td>
<td>
<?php $this->_($data['numberOfCandidates']); ?>
</td>
</tr>
<?php endforeach; ?>
</table>
</td>
</tr>
</table>
<?php endif; ?>
<br />
<table>
<tr>
<?php if ($this->EEOSettingsRS['genderTracking'] == 1): ?>
<td style="padding:5px;">
<table style="border-collapse: collapse;" width="300px;">
<tr>
<td colspan="2">
<img src="<?php echo($this->urlGenderGraph); ?>">
</td>
</tr>
</table>
</td>
<?php endif; ?>
<?php if ($this->EEOSettingsRS['genderTracking'] == 1): ?>
<td style="padding:5px;">
<table style="border-collapse: collapse;" width="190px;">
<tr>
<td colspan="2">
<img src="<?php echo($this->urlDisabilityGraph); ?>">
</td>
</tr>
</table>
</td>
<?php endif; ?>
</tr>
</table>
</td>
</tr>
</table>
</td>
<?php endif; ?>
</tr>
</table>
</form>
<script type="text/javascript">
document.jobOrderReportForm.siteName.focus();
</script>
</div>
</div>
<?php TemplateUtility::printFooter(); ?>