|
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/candidates/ |
Upload File : |
<?php /* $Id: Edit.tpl 3695 2007-11-26 22:01:04Z brian $ */ ?>
<?php TemplateUtility::printHeader('Candidates', array('modules/candidates/validator.js', 'js/sweetTitles.js', 'js/listEditor.js', 'js/doubleListEditor.js')); ?>
<?php TemplateUtility::printHeaderBlock(); ?>
<?php TemplateUtility::printTabs($this->active); ?>
<div id="main">
<?php TemplateUtility::printQuickSearch(); ?>
<div id="contents">
<table>
<tr>
<td width="3%">
<img src="images/candidate.gif" width="24" height="24" border="0" alt="Candidates" style="margin-top: 3px;" />
</td>
<td><h2>Candidates: Edit</h2></td>
</tr>
</table>
<p class="note">Edit Candidate</p>
<form name="editCandidateForm" id="editCandidateForm" action="<?php echo(CATSUtility::getIndexName()); ?>?m=candidates&a=edit" method="post" onsubmit="return checkEditForm(document.editCandidateForm);" autocomplete="off">
<input type="hidden" name="postback" id="postback" value="postback" />
<input type="hidden" id="candidateID" name="candidateID" value="<?php $this->_($this->data['candidateID']); ?>" />
<table class="editTable" width="700">
<tr>
<td class="tdVertical" valign="top" style="height: 28px;">
<label id="isHotLabel" for="isHot">Active:</label>
</td>
<td class="tdData" >
<input type="checkbox" id="isActive" name="isActive"<?php if ($this->data['isActive'] == 1): ?> checked<?php endif; ?> />
<img title="Unchecking this box indicates the candidate is inactive, and will no longer display on the resume search results." src="images/information.gif" alt="" width="16" height="16" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="firstNameLabel" for="firstName">First Name:</label>
</td>
<td class="tdData">
<input type="text" class="inputbox" id="firstName" name="firstName" value="<?php $this->_($this->data['firstName']); ?>" style="width: 150px;" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="middleNameLabel" for="middleName">Middle Name:</label>
</td>
<td class="tdData">
<input type="text" class="inputbox" id="middleName" name="middleName" value="<?php $this->_($this->data['middleName']); ?>" style="width: 150px;" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="lastNameLabel" for="lastName">Last Name:</label>
</td>
<td class="tdData">
<input type="text" class="inputbox" id="lastName" name="lastName" value="<?php $this->_($this->data['lastName']); ?>" style="width: 150px;" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="email1Label" for="email1">E-Mail:</label>
</td>
<td class="tdData">
<input type="text" class="inputbox" id="email1" name="email1" value="<?php $this->_($this->data['email1']); ?>" style="width: 150px;" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="email2Label" for="email2">2nd E-Mail:</label>
</td>
<td class="tdData">
<input type="text" class="inputbox" id="email2" name="email2" value="<?php $this->_($this->data['email2']); ?>" style="width: 150px;" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="phoneHomeLabel" for="phoneHome">Home Phone:</label>
</td>
<td class="tdData">
<input type="text" class="inputbox" id="phoneHome" name="phoneHome" value="<?php $this->_($this->data['phoneHome']); ?>" style="width: 150px;" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="phoneCellLabel" for="phoneCell">Cell Phone:</label>
</td>
<td class="tdData">
<input type="text" class="inputbox" id="phoneCell" name="phoneCell" value="<?php $this->_($this->data['phoneCell']); ?>" style="width: 150px;" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="phoneWorkLabel" for="phoneWork">Work Phone:</label>
</td>
<td class="tdData">
<input type="text" class="inputbox" id="phoneWork" name="phoneWork" value="<?php $this->_($this->data['phoneWork']); ?>" style="width: 150px;" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="webSiteLabel" for="webSite">Web Site:</label>
</td>
<td class="tdData">
<input type="text" class="inputbox" id="webSite" name="webSite" value="<?php $this->_($this->data['webSite']); ?>" style="width: 150px" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="addressLabel" for="address1">Address:</label>
</td>
<td class="tdData">
<textarea class="inputbox" id="address" name="address" style="width: 150px;"><?php $this->_($this->data['address']); ?></textarea>
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="cityLabel" for="city">City:</label>
</td>
<td class="tdData">
<input type="text" class="inputbox" id="city" name="city" value="<?php $this->_($this->data['city']); ?>" style="width: 150px;" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="stateLabel" for="state">State:</label>
</td>
<td class="tdData">
<input type="text" class="inputbox" id="state" name="state" value="<?php $this->_($this->data['state']); ?>" style="width: 150px;" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="zipLabel" for="zip">Postal Code:</label>
</td>
<td class="tdData">
<input type="text" class="inputbox" id="zip" name="zip" value="<?php $this->_($this->data['zip']); ?>" style="width: 150px;" />
<input type="button" class="button" onclick="CityState_populate('zip', 'ajaxIndicator');" value="Lookup" />
<img src="images/indicator2.gif" alt="AJAX" id="ajaxIndicator" style="vertical-align: middle; visibility: hidden; margin-left: 5px;" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="canRelocateLabel" for="canRelocate">Best Time To Call:</label>
</td>
<td class="tdData">
<input type="text" class="inputbox" id="bestTimeToCall" name="bestTimeToCall" value="<?php $this->_($this->data['bestTimeToCall']); ?>" style="width: 150px;" />
</td>
</tr>
<tr>
<td class="tdVertical" valign="top" style="height: 28px;">
<label id="isHotLabel" for="isHot">Hot Candidate:</label>
</td>
<td class="tdData" >
<input type="checkbox" id="isHot" name="isHot"<?php if ($this->data['isHot'] == 1): ?> checked<?php endif; ?> />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="sourceLabel" for="source">Source:</label>
</td>
<td class="tdData">
<select id="sourceSelect" name="source" class="inputbox" style="width: 150px;" onchange="if (this.value == 'edit') { listEditor('Sources', 'sourceSelect', 'sourceCSV', false, ''); this.value = '(none)'; } if (this.value == 'nullline') { this.value = '(none)'; }">
<option value="edit">(Edit Sources)</option>
<option value="nullline">-------------------------------</option>
<?php if ($this->sourceInRS == false): ?>
<?php if ($this->data['source'] != '(none)'): ?>
<option value="(none)">(None)</option>
<?php endif; ?>
<option value="<?php $this->_($this->data['source']); ?>" selected="selected"><?php $this->_($this->data['source']); ?></option>
<?php else: ?>
<option value="(none)">(None)</option>
<?php endif; ?>
<?php foreach ($this->sourcesRS AS $index => $source): ?>
<option value="<?php $this->_($source['name']); ?>" <?php if ($source['name'] == $this->data['source']): ?>selected<?php endif; ?>><?php $this->_($source['name']); ?></option>
<?php endforeach; ?>
</select>
<input type="hidden" id="sourceCSV" name="sourceCSV" value="<?php $this->_($this->sourcesString); ?>" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="ownerLabel" for="owner">Owner:</label>
</td>
<td class="tdData">
<select id="owner" name="owner" class="inputbox" style="width: 150px;" <?php if (!$this->emailTemplateDisabled): ?>onchange="document.getElementById('divOwnershipChange').style.display=''; <?php if ($this->canEmail): ?>document.getElementById('checkboxOwnershipChange').checked=true;<?php endif; ?>"<?php endif; ?>>
<option value="-1">None</option>
<?php foreach ($this->usersRS as $rowNumber => $usersData): ?>
<?php if ($this->data['owner'] == $usersData['userID']): ?>
<option selected="selected" value="<?php $this->_($usersData['userID']) ?>"><?php $this->_($usersData['lastName']) ?>, <?php $this->_($usersData['firstName']) ?></option>
<?php else: ?>
<option value="<?php $this->_($usersData['userID']) ?>"><?php $this->_($usersData['lastName']) ?>, <?php $this->_($usersData['firstName']) ?></option>
<?php endif; ?>
<?php endforeach; ?>
</select> *
<div style="display:none;" id="divOwnershipChange">
<input type="checkbox" name="ownershipChange" id="checkboxOwnershipChange" <?php if (!$this->canEmail): ?>disabled<?php endif; ?>> E-Mail new owner of change
</div>
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="sourceLabel" for="image">Picture:</label>
</td>
<td class="tdData">
<input type="button" class="button" id="addImage" name="addImage" value="Edit Profile Picture" style="width:150px;" onclick="showPopWin('<?php echo(CATSUtility::getIndexName()); ?>?m=candidates&a=addEditImage&candidateID=<?php echo($this->candidateID); ?>', 400, 370, null); return false;" />
</td>
</tr>
</table>
<?php if($this->EEOSettingsRS['enabled'] == 1): ?>
<?php if(!$this->EEOSettingsRS['canSeeEEOInfo']): ?>
<table class="editTable" width="700">
<tr>
<td>
Editing EEO data is disabled.
</td>
</tr>
</tr>
<table class="editTable" width="700" style="display:none;">
<?php else: ?>
<table class="editTable" width="700">
<?php endif; ?>
<?php if ($this->EEOSettingsRS['genderTracking'] == 1): ?>
<tr>
<td class="tdVertical">
<label id="canRelocateLabel" for="canRelocate">Gender:</label>
</td>
<td class="tdData">
<select id="gender" name="gender" class="inputbox" style="width:200px;">
<option value="">----</option>
<option value="m" <?php if (strtolower($this->data['eeoGender']) == 'm') echo('selected'); ?>>Male</option>
<option value="f" <?php if (strtolower($this->data['eeoGender']) == 'f') echo('selected'); ?>>Female</option>
</select>
</td>
</tr>
<?php endif; ?>
<?php if ($this->EEOSettingsRS['ethnicTracking'] == 1): ?>
<tr>
<td class="tdVertical">
<label id="canRelocateLabel" for="canRelocate">Ethnic Background:</label>
</td>
<td class="tdData">
<select id="race" name="race" class="inputbox" style="width:200px;">
<option value="">----</option>
<option value="1" <?php if ($this->data['eeoEthnicTypeID'] == 1) echo('selected'); ?>>American Indian</option>
<option value="2" <?php if ($this->data['eeoEthnicTypeID'] == 2) echo('selected'); ?>>Asian or Pacific Islander</option>
<option value="3" <?php if ($this->data['eeoEthnicTypeID'] == 3) echo('selected'); ?>>Hispanic or Latino</option>
<option value="4" <?php if ($this->data['eeoEthnicTypeID'] == 4) echo('selected'); ?>>Non-Hispanic Black</option>
<option value="5" <?php if ($this->data['eeoEthnicTypeID'] == 5) echo('selected'); ?>>Non-Hispanic White</option>
</select>
</td>
</tr>
<?php endif; ?>
<?php if ($this->EEOSettingsRS['veteranTracking'] == 1): ?>
<tr>
<td class="tdVertical">
<label id="canRelocateLabel" for="canRelocate">Vetran Status:</label>
</td>
<td class="tdData">
<select id="veteran" name="veteran" class="inputbox" style="width:200px;">
<option value="">----</option>
<option value="1" <?php if ($this->data['eeoVeteranTypeID'] == 1) echo('selected'); ?>>No</option>
<option value="2" <?php if ($this->data['eeoVeteranTypeID'] == 2) echo('selected'); ?>>Eligible Veteran</option>
<option value="3" <?php if ($this->data['eeoVeteranTypeID'] == 3) echo('selected'); ?>>Disabled Veteran</option>
<option value="4" <?php if ($this->data['eeoVeteranTypeID'] == 4) echo('selected'); ?>>Eligible and Disabled</option>
</select>
</td>
</tr>
<?php endif; ?>
<?php if ($this->EEOSettingsRS['disabilityTracking'] == 1): ?>
<tr>
<td class="tdVertical">
<label id="canRelocateLabel" for="canRelocate">Disability Status:</label>
</td>
<td class="tdData">
<select id="disability" name="disability" class="inputbox" style="width:200px;">
<option value="">----</option>
<option value="No" <?php if ($this->data['eeoDisabilityStatus'] == 'No') echo('selected'); ?>>No</option>
<option value="Yes" <?php if ($this->data['eeoDisabilityStatus'] == 'Yes') echo('selected'); ?>>Yes</option>
</select>
</td>
</tr>
<?php endif; ?>
</table>
<?php endif; ?>
<table class="editTable" width="700">
<?php for ($i = 0; $i < count($this->extraFieldRS); $i++): ?>
<tr>
<td class="tdVertical" id="extraFieldTd<?php echo($i); ?>">
<label id="extraFieldLbl<?php echo($i); ?>">
<?php $this->_($this->extraFieldRS[$i]['fieldName']); ?>:
</label>
</td>
<td class="tdData" id="extraFieldData<?php echo($i); ?>">
<?php echo($this->extraFieldRS[$i]['editHTML']); ?>
</td>
</tr>
<?php endfor; ?>
<tr>
<td class="tdVertical">
<label id="canRelocateLabel" for="canRelocate">Can Relocate:</label>
</td>
<td class="tdData">
<input type="checkbox" id="canRelocate" name="canRelocate"<?php if ($this->data['canRelocate'] == 1): ?> checked<?php endif; ?> />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="dateAvailableLabel" for="dateAvailable">Date Available:</label>
</td>
<td class="tdData">
<?php if (!empty($this->data['dateAvailable'])): ?>
<script type="text/javascript">DateInput('dateAvailable', false, 'MM-DD-YY', '<?php echo($this->data['dateAvailableMDY']); ?>', -1);</script>
<?php else: ?>
<script type="text/javascript">DateInput('dateAvailable', false, 'MM-DD-YY', '', -1);</script>
<?php endif; ?>
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="currentEmployerLabel" for="currentEmployer">Current Employer:</label>
</td>
<td class="tdData">
<input type="text" class="inputbox" id="currentEmployer" name="currentEmployer" value="<?php $this->_($this->data['currentEmployer']); ?>" style="width: 150px;" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="currentPayLabel" for="currentEmployer">Current Pay:</label>
</td>
<td class="tdData">
<input type="text" name="currentPay" id="currentPay" value="<?php $this->_($this->data['currentPay']); ?>" class="inputbox" style="width: 150px" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="desiredPayLabel" for="currentEmployer">Desired Pay:</label>
</td>
<td class="tdData">
<input type="text" name="desiredPay" id="desiredPay" value="<?php $this->_($this->data['desiredPay']); ?>" class="inputbox" style="width: 150px" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="keySkillsLabel" for="keySkills">Key Skills:</label>
</td>
<td class="tdData">
<input type="text" class="inputbox" id="keySkills" name="keySkills" value="<?php $this->_($this->data['keySkills']); ?>" style="width: 400px;" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="notesLabel" for="notes">Misc. Notes:</label>
</td>
<td class="tdData">
<textarea class="inputbox" id="notes" name="notes" rows="5" style="width: 400px;"><?php $this->_($this->data['notes']); ?></textarea>
</td>
</tr>
</table>
<input type="submit" class="button" name="submit" id="submit" value="Save" />
<input type="reset" class="button" name="reset" id="reset" value="Reset" onclick="resetFormForeign();" />
<input type="button" class="button" name="back" id="back" value="Back to Details" onclick="javascript:goToURL('<?php echo(CATSUtility::getIndexName()); ?>?m=candidates&a=show&candidateID=<?php echo($this->candidateID); ?>');" />
</form>
<script type="text/javascript">
document.editCandidateForm.firstName.focus();
</script>
</div>
</div>
<?php TemplateUtility::printFooter(); ?>