Línea 19... |
Línea 19... |
19 |
|
19 |
|
20 |
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
|
20 |
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
|
Línea 21... |
Línea -... |
21 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
|
- |
|
22 |
|
- |
|
23 |
|
- |
|
- |
|
21 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
|
- |
|
22 |
|
- |
|
23 |
|
Línea 24... |
Línea 24... |
24 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/jquery.validate.js'));
|
24 |
|
25 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/additional-methods.js'));
|
25 |
|
Línea 26... |
Línea 26... |
26 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/localization/messages_es.js'));
|
26 |
|
Línea 661... |
Línea 661... |
661 |
</div>
|
661 |
</div>
|
Línea 662... |
Línea 662... |
662 |
|
662 |
|
663 |
|
663 |
|
664 |
<!-- Create/Edit Form -->
|
664 |
<!-- Create/Edit Form -->
|
665 |
<div class="row" id="row-form" style="display: none; padding: 16px;">
|
665 |
<div class="row" id="row-form" style="display: none; padding: 16px;">
|
666 |
<div class="col-xs-12 col-md-12">
|
666 |
<div class="col-12">
|
- |
|
667 |
<form action="#" name="form-main" id="form-main">
|
667 |
<form action="#" name="form-main" id="form-main">
|
668 |
<div class="row">
|
668 |
<div class="form-group">
|
669 |
<div class="col-12 mt-3">
|
- |
|
670 |
<label for="form-name">LABEL_FIRST_NAME</label>
|
669 |
<label for="form-name">LABEL_FIRST_NAME</label>
|
671 |
<input type="text" name="form-name" id="form-name" class="form-control" maxlength="50" />
|
670 |
<input type="text" name="form-name" id="form-name" class="form-control" maxlength="50" />
|
672 |
</div>
|
- |
|
673 |
</div>
|
671 |
</div>
|
674 |
<div class="row">
|
672 |
<div class="form-group">
|
675 |
<div class="col-12 mt-3">
|
673 |
<label for="job_description_id">LABEL_POSITION_EVALUATED</label>
|
676 |
<label for="job_description_id">LABEL_POSITION_EVALUATED</label>
|
674 |
<select name="job_description_id" id="job_description_id" class="form-control">
|
677 |
<select name="job_description_id" id="job_description_id" class="form-control">
|
675 |
<option value="">LABEL_SELECT</option>
|
678 |
<option value="">LABEL_SELECT</option>
|
676 |
<?php foreach ($jobsDescription as $rs): ?>
|
679 |
<?php foreach ($jobsDescription as $rs): ?>
|
677 |
<option value="<?php echo $rs->uuid;?>"><?php echo $rs->name;?></option>
|
680 |
<option value="<?php echo $rs->uuid;?>"><?php echo $rs->name;?></option>
|
- |
|
681 |
<?php endforeach; ?>
|
678 |
<?php endforeach; ?>
|
682 |
</select>
|
679 |
</select>
|
683 |
</div>
|
- |
|
684 |
</div>
|
680 |
</div>
|
685 |
<div class="row">
|
681 |
<div class="form-group">
|
686 |
<div class="col-12 mt-3">
|
682 |
<label for="form-description">LABEL_DESCRIPTION</label>
|
687 |
<label for="form-description">LABEL_DESCRIPTION</label>
|
- |
|
688 |
<!-- ckeditor -->
|
683 |
<!-- ckeditor -->
|
689 |
<textarea name="form-description" id="form-description" rows="5" class="ckeditor form-control"></textarea>
|
684 |
<textarea name="form-description" id="form-description" rows="5" class="ckeditor form-control"></textarea>
|
690 |
</div>
|
- |
|
691 |
</div>
|
685 |
</div>
|
692 |
<div class="row">
|
686 |
<div class="form-group">
|
693 |
<div class="col-12 mt-3">
|
687 |
<label for="form-status">LABEL_STATUS</label>
|
694 |
<label for="form-status">LABEL_STATUS</label>
|
688 |
<select name="form-status" id="form-status" class="form-control">
|
695 |
<select name="form-status" id="form-status" class="form-control">
|
689 |
<option value="<?php echo $status_inactive; ?>">LABEL_INACTIVE</option>
|
696 |
<option value="<?php echo $status_inactive; ?>">LABEL_INACTIVE</option>
|
- |
|
697 |
<option value="<?php echo $status_active; ?>">LABEL_ACTIVE</option>
|
690 |
<option value="<?php echo $status_active; ?>">LABEL_ACTIVE</option>
|
698 |
</select>
|
691 |
</select>
|
699 |
</div>
|
692 |
</div>
|
700 |
</div>
|
693 |
<div class="row">
|
701 |
<div class="row">
|
694 |
<div class="col-xs-12 col-md-12 text-right">
|
702 |
<div class="col-12 text-right">
|
695 |
<button type="button" class="btn btn-primary" id="btn-add-section" data-toggle="tooltip" title="LABEL_ADD LABEL_SECTION"><i class="fa fa-plus" aria-hidden="true"></i> LABEL_ADD LABEL_SECTION</button>
|
703 |
<button type="button" class="btn btn-primary" id="btn-add-section" data-toggle="tooltip" title="LABEL_ADD LABEL_SECTION"><i class="fa fa-plus" aria-hidden="true"></i> LABEL_ADD LABEL_SECTION</button>
|
696 |
</div>
|
704 |
</div>
|
697 |
</div>
|
705 |
</div>
|
698 |
<br />
|
706 |
<br />
|
699 |
<div class="row">
|
707 |
<div class="row">
|
700 |
<div class="col-xs-12 col-md-12">
|
708 |
<div class="col-12">
|
701 |
<div class="panel-group" id="rows"></div>
|
709 |
<div class="panel-group" id="rows"></div>
|
702 |
</div>
|
710 |
</div>
|
703 |
</div>
|
711 |
</div>
|
704 |
<div class="form-group" id="competencies-to-job" style="display:none">
|
712 |
<div class="form-group" id="competencies-to-job" style="display:none">
|
705 |
<div class="row">
|
713 |
<div class="row">
|
706 |
<div class="col-xs-12 col-md-12">
|
714 |
<div class="col-12">
|
707 |
<hr>
|
715 |
<hr>
|
708 |
<h6 style="font-size: 18px;font-weight: bold;">LABEL_COMPETENCIES_TO_JOB:</h6>
|
716 |
<h6 style="font-size: 18px;font-weight: bold;">LABEL_COMPETENCIES_TO_JOB:</h6>
|
709 |
<br>
|
717 |
<br>
|