/modules/reports/EEOReport.tpl
https://bitbucket.org/jstechnologies/cats · Smarty Template · 164 lines · 157 code · 7 blank · 0 comment · 22 complexity · 48f7ef3827e228863ccdc28b789fefa4 MD5 · raw 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>
- <div id="bottomShadow"></div>
- <?php TemplateUtility::printFooter(); ?>