| Línea 624... |
Línea 624... |
| 624 |
<div class="form-group">
|
624 |
<div class="form-group">
|
| 625 |
<label for="job_description_id">LABEL_POSITION_EVALUATED</label>
|
625 |
<label for="job_description_id">LABEL_POSITION_EVALUATED</label>
|
| 626 |
<select name="job_description_id" id="job_description_id" class="form-control">
|
626 |
<select name="job_description_id" id="job_description_id" class="form-control">
|
| 627 |
<option value="">LABEL_SELECT</option>
|
627 |
<option value="">LABEL_SELECT</option>
|
| 628 |
<?php foreach ($jobsDescription as $rs): ?>
|
628 |
<?php foreach ($jobsDescription as $rs): ?>
|
| 629 |
<option value="<?php echo $rs->uuid;?>"><?php echo $rs->name;?></option>
|
629 |
<option value="<?php echo $rs->id;?>"><?php echo $rs->name;?></option>
|
| 630 |
<?php endforeach; ?>
|
630 |
<?php endforeach; ?>
|
| 631 |
</select>
|
631 |
</select>
|
| 632 |
</div>
|
632 |
</div>
|
| 633 |
<div class="form-group">
|
633 |
<div class="form-group">
|
| 634 |
<label for="location_search">LABEL_LOCATION</label>
|
634 |
<label for="location_search">LABEL_LOCATION</label>
|
| Línea 637... |
Línea 637... |
| 637 |
<div class="form-group">
|
637 |
<div class="form-group">
|
| 638 |
<label for="job_category_id">LABEL_JOB_CATEGORY</label>
|
638 |
<label for="job_category_id">LABEL_JOB_CATEGORY</label>
|
| 639 |
<select name="job_category_id" id="job_category_id" class="form-control">
|
639 |
<select name="job_category_id" id="job_category_id" class="form-control">
|
| 640 |
<option value="">LABEL_SELECT</option>
|
640 |
<option value="">LABEL_SELECT</option>
|
| 641 |
<?php foreach ($jobCategory as $rs): ?>
|
641 |
<?php foreach ($jobCategory as $rs): ?>
|
| 642 |
<option value="<?php echo $rs->uuid;?>"><?php echo $rs->name;?></option>
|
642 |
<option value="<?php echo $rs->id;?>"><?php echo $rs->name;?></option>
|
| 643 |
<?php endforeach; ?>
|
643 |
<?php endforeach; ?>
|
| 644 |
</select>
|
644 |
</select>
|
| 645 |
</div>
|
645 |
</div>
|
| 646 |
<div class="form-group">
|
646 |
<div class="form-group">
|
| 647 |
<label for="industry_id">LABEL_INDUSTRY</label>
|
647 |
<label for="industry_id">LABEL_INDUSTRY</label>
|
| 648 |
<select name="industry_id" id="industry_id" class="form-control">
|
648 |
<select name="industry_id" id="industry_id" class="form-control">
|
| 649 |
<option value="">LABEL_SELECT</option>
|
649 |
<option value="">LABEL_SELECT</option>
|
| 650 |
<?php foreach ($industry as $rs): ?>
|
650 |
<?php foreach ($industry as $rs): ?>
|
| 651 |
<option value="<?php echo $rs->uuid;?>"><?php echo $rs->name;?></option>
|
651 |
<option value="<?php echo $rs->id;?>"><?php echo $rs->name;?></option>
|
| 652 |
<?php endforeach; ?>
|
652 |
<?php endforeach; ?>
|
| 653 |
</select>
|
653 |
</select>
|
| 654 |
</div>
|
654 |
</div>
|
| 655 |
<div class="form-group">
|
655 |
<div class="form-group">
|
| 656 |
<label for="last_date">LABEL_LAST_DATE_OF_APPLICATION</label>
|
656 |
<label for="last_date">LABEL_LAST_DATE_OF_APPLICATION</label>
|