| Línea 549... |
Línea 549... |
| 549 |
<section id="main" style="display: none;">
|
549 |
<section id="main" style="display: none;">
|
| 550 |
<div class="container-fluid">
|
550 |
<div class="container-fluid">
|
| 551 |
<div class="row">
|
551 |
<div class="row">
|
| 552 |
<div class="col-12">
|
552 |
<div class="col-12">
|
| 553 |
<form action="#" name="form-interview" id="form-interview">
|
553 |
<form action="#" name="form-interview" id="form-interview">
|
| 554 |
<div class="card">
|
554 |
<div class="card">
|
| 555 |
<div class="card-header">
|
- |
|
| 556 |
<ul class="nav nav-tabs" id="custom-tabs" role="tablist">
|
555 |
<ul class="nav nav-tabs" id="custom-tabs" role="tablist">
|
| 557 |
<li class="nav-item" role="presentation">
|
556 |
<li class="nav-item" role="presentation">
|
| 558 |
<a class="nav-link active" id="custom-tabs-general-tab" data-toggle="tab" href="#custom-tabs-general" role="tab" aria-controls="custom-tabs-general" aria-selected="true">LABEL_GENERAL</a>
|
557 |
<a class="nav-link active" id="custom-tabs-general-tab" data-toggle="tab" href="#custom-tabs-general" role="tab" aria-controls="custom-tabs-general" aria-selected="true">LABEL_GENERAL</a>
|
| 559 |
</li>
|
558 |
</li>
|
| 560 |
<li class="nav-item" role="presentation">
|
559 |
<li class="nav-item" role="presentation">
|
| 561 |
<a class="nav-link" id="custom-tabs-compentencies-tab" data-toggle="tab" href="#custom-tabs-compentencies" role="tab" aria-controls="custom-tabs-compentencies" aria-selected="false">LABEL_COMPETENCIES</a>
|
560 |
<a class="nav-link" id="custom-tabs-compentencies-tab" data-toggle="tab" href="#custom-tabs-compentencies" role="tab" aria-controls="custom-tabs-compentencies" aria-selected="false">LABEL_COMPETENCIES</a>
|
| 562 |
</li>
|
561 |
</li>
|
| 563 |
<li class="nav-item" role="presentation">
|
562 |
<li class="nav-item" role="presentation">
|
| 564 |
<a class="nav-link" id="custom-tabs-evaluation-tab" data-toggle="tab" href="#custom-tabs-evaluation" role="tab" aria-controls="custom-tabs-evaluation" aria-selected="false">LABEL_SUBORDINATES</a>
|
563 |
<a class="nav-link" id="custom-tabs-evaluation-tab" data-toggle="tab" href="#custom-tabs-evaluation" role="tab" aria-controls="custom-tabs-evaluation" aria-selected="false">LABEL_SUBORDINATES</a>
|
| 565 |
</li>
|
564 |
</li>
|
| 566 |
</ul>
|
565 |
</ul>
|
| 567 |
</div>
|
- |
|
| Línea 568... |
Línea 566... |
| 568 |
|
566 |
|
| 569 |
<div class="card-body tab-content">
|
567 |
<div class="tab-content">
|
| 570 |
<div class="tab-pane fade show active" id="custom-tabs-general" role="tabpanel" aria-labelledby="custom-tabs-general-tab">
|
568 |
<div class="tab-pane fade show active" id="custom-tabs-general" role="tabpanel" aria-labelledby="custom-tabs-general-tab">
|
| 571 |
<div class="row">
|
569 |
<div class="row">
|
| 572 |
<div class="col-md-6 col-sm-12">
|
570 |
<div class="col-md-6 col-sm-12">
|
| 573 |
<div class="form-group">
|
571 |
<div class="form-group">
|
| Línea 586... |
Línea 584... |
| 586 |
<div class="col-md-12 col-sm-12 col-xs-12" id="competencies-job" style="margin-top: 1px;">
|
584 |
<div class="col-md-12 col-sm-12 col-xs-12" id="competencies-job" style="margin-top: 1px;">
|
| 587 |
</div>
|
585 |
</div>
|
| 588 |
</div>
|
586 |
</div>
|
| 589 |
</div>
|
587 |
</div>
|
| 590 |
<div class="tab-pane fade" id="custom-tabs-evaluation" role="tabpanel" aria-labelledby="custom-tabs-evaluation-tab">
|
588 |
<div class="tab-pane fade" id="custom-tabs-evaluation" role="tabpanel" aria-labelledby="custom-tabs-evaluation-tab">
|
| 591 |
<div class="row">
|
589 |
<div class="row">
|
| 592 |
<?php
|
590 |
<?php
|
| 593 |
$form->setAttributes([
|
591 |
$form->setAttributes([
|
| 594 |
'method' => 'post',
|
592 |
'method' => 'post',
|
| 595 |
'name' => 'form-add',
|
593 |
'name' => 'form-add',
|
| 596 |
'id' => 'form-add'
|
594 |
'id' => 'form-add'
|
| 597 |
]);
|
595 |
]);
|
| 598 |
$form->prepare();
|
596 |
$form->prepare();
|
| 599 |
echo $this->form()->openTag($form);
|
597 |
echo $this->form()->openTag($form);
|
| 600 |
?>
|
598 |
?>
|
| 601 |
<div class="form-group">
|
599 |
<div class="form-group">
|
| 602 |
<?php
|
600 |
<?php
|
| 603 |
$element = $form->get('comment');
|
601 |
$element = $form->get('comment');
|
| 604 |
$element->setOptions(['label' => 'LABEL_COMMENT']);
|
602 |
$element->setOptions(['label' => 'LABEL_COMMENT']);
|
| 605 |
$element->setAttributes(['class' => 'form-control']);
|
603 |
$element->setAttributes(['class' => 'form-control']);
|
| 606 |
echo $this->formLabel($element);
|
604 |
echo $this->formLabel($element);
|
| 607 |
echo $this->formText($element);
|
605 |
echo $this->formText($element);
|
| 608 |
?>
|
606 |
?>
|
| 609 |
</div>
|
607 |
</div>
|
| 610 |
<div class="form-group">
|
608 |
<div class="form-group">
|
| 611 |
<?php
|
609 |
<?php
|
| 612 |
$element = $form->get('points');
|
610 |
$element = $form->get('points');
|
| 613 |
$element->setAttributes(['class' => 'form-control']);
|
611 |
$element->setAttributes(['class' => 'form-control']);
|
| 614 |
$element->setOptions(['label' => 'LABEL_EVALUATION']);
|
612 |
$element->setOptions(['label' => 'LABEL_EVALUATION']);
|
| 615 |
echo $this->formLabel($element);
|
613 |
echo $this->formLabel($element);
|
| 616 |
echo $this->formSelect($element);
|
614 |
echo $this->formSelect($element);
|
| 617 |
?>
|
615 |
?>
|
| 618 |
</div>
|
616 |
</div>
|
| 619 |
<div class="form-group">
|
617 |
<div class="form-group">
|
| 620 |
<?php
|
618 |
<?php
|
| 621 |
$element = $form->get('status');
|
619 |
$element = $form->get('status');
|
| 622 |
$element->setAttributes(['class' => 'form-control']);
|
620 |
$element->setAttributes(['class' => 'form-control']);
|
| 623 |
$element->setOptions(['label' => 'LABEL_STATUS']);
|
621 |
$element->setOptions(['label' => 'LABEL_STATUS']);
|
| 624 |
echo $this->formLabel($element);
|
622 |
echo $this->formLabel($element);
|
| 625 |
echo $this->formSelect($element);
|
623 |
echo $this->formSelect($element);
|
| 626 |
?>
|
624 |
?>
|
| 627 |
</div>
|
625 |
</div>
|
| 628 |
<div class="form-group">
|
626 |
<div class="form-group">
|
| 629 |
<?php
|
627 |
<?php
|
| 630 |
$element = $form->get('type');
|
628 |
$element = $form->get('type');
|
| 631 |
$element->setAttributes(['class' => 'form-control']);
|
629 |
$element->setAttributes(['class' => 'form-control']);
|
| 632 |
$element->setOptions(['label' => 'LABEL_INTERVIEWED_BY']);
|
630 |
$element->setOptions(['label' => 'LABEL_INTERVIEWED_BY']);
|
| 633 |
echo $this->formLabel($element);
|
631 |
echo $this->formLabel($element);
|
| 634 |
echo $this->formSelect($element);
|
632 |
echo $this->formSelect($element);
|
| 635 |
?>
|
633 |
?>
|
| 636 |
</div>
|
634 |
</div>
|
| 637 |
</div>
|
635 |
</div>
|
| 638 |
</div>
|
636 |
</div>
|
| - |
|
637 |
</div>
|
| 639 |
<div class="card-footer clearfix">
|
638 |
<div class="card-footer clearfix">
|
| 640 |
<button type="submit" form="form-main" class="btn btn-info btn-form-save-continue">LABEL_SAVE & LABEL_CONTINUE</button>
|
639 |
<button type="submit" form="form-main" class="btn btn-info btn-form-save-continue">LABEL_SAVE & LABEL_CONTINUE</button>
|
| 641 |
<button type="button" class="btn btn-primary btn-form-save-close">LABEL_SAVE & LABEL_CLOSE</button>
|
640 |
<button type="button" class="btn btn-primary btn-form-save-close">LABEL_SAVE & LABEL_CLOSE</button>
|
| 642 |
<button type="button" class="btn btn-secondary btn-edit-cancel">LABEL_CANCEL</button>
|
641 |
<button type="button" class="btn btn-secondary btn-edit-cancel">LABEL_CANCEL</button>
|
| 643 |
</div>
|
- |
|
| 644 |
</div>
|
642 |
</div>
|
| 645 |
</div>
|
643 |
</div>
|
| 646 |
</div>
|
644 |
</div>
|
| 647 |
</form>
|
645 |
</form>
|
| 648 |
</div>
|
646 |
</div>
|
| 649 |
</div>
|
647 |
</div>
|