Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 3394 | Rev 3396 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3394 Rev 3395
Línea 651... Línea 651...
651
            <p class="card-text">{{:job_description.functions}}</p>
651
            <p class="card-text">{{:job_description.functions}}</p>
652
        </div>
652
        </div>
653
    </div>
653
    </div>
654
</script>
654
</script>
Línea 655... Línea 655...
655
 
655
 
656
<script id="competenciesTemplate" type="text/x-jsrender">
656
<script id="competenciesTemplata" type="text/x-jsrender">
657
<table class="table table-bordered" id="panel-{{:slug_section}}">  
657
<table class="table table-bordered" id="panel-{{:slug_section}}">  
658
    <thead>
658
    <thead>
659
        <tr>
659
        <tr>
660
           <th style="width: 50%;">LABEL_ELEMENT</th>
660
           <th style="width: 50%;">LABEL_ELEMENT</th>
Línea 699... Línea 699...
699
 
699
 
700
        {{/for}}
700
        {{/for}}
701
    </tbody>
701
    </tbody>
702
</table>
702
</table>
-
 
703
</script>
-
 
704
 
-
 
705
<script id="competenciesTemplate" type="text/x-jsrender">
-
 
706
<table class="table table-bordered" id="panel-{{:slug_section}}">  
-
 
707
    <thead>
-
 
708
        <tr>
-
 
709
           <th style="width: 50%;">LABEL_ELEMENT</th>
-
 
710
           <th style="width: 50%;">LABEL_TITLE</th>
-
 
711
        </tr>
-
 
712
    </thead> 
-
 
713
    <tbody>
-
 
714
        {{for job_description.competencies}}
-
 
715
            <tr>
-
 
716
               <td class="text-left">LABEL_COMPETENCY</td>
-
 
717
               <td class="text-left">{{:competency_name}}</td>
-
 
718
            </tr>
-
 
719
        
-
 
720
            {{for behaviors}}
-
 
721
                <tr>
-
 
722
                    <td>
-
 
723
                        <table class="table table-borderless">
-
 
724
                            <tr>
-
 
725
                                <td class="text-left">--LABEL_CONDUCT</td>
-
 
726
                                <td class="text-left">
-
 
727
                                    {{:description}}
-
 
728
                                </td>
-
 
729
                            </tr>
-
 
730
                            <tr>
-
 
731
                                <td colspan="2" data-competency-behavior data-competency-uuid="{{:competency_uuid}}" data-behavior-uuid="{{:uuid}}">
-
 
732
                                    <label for="textarea-{{:competency_uuid}}-{{:uuid}}">LABEL_COMMENT</label>
-
 
733
                                    
-
 
734
                                    <textarea
-
 
735
                                        id="textarea-{{:competency_uuid}}-{{:uuid}}"
-
 
736
                                        class="form-control"
-
 
737
                                    ></textarea>
-
 
738
                                    
-
 
739
                                    <label for="select-{{:competency_uuid}}-{{:uuid}}">LABEL_EVALUATION</label>
-
 
740
 
-
 
741
                                    <select class="form-control" id="select-{{:competency_uuid}}-{{:uuid}}">
-
 
742
                                        <option value="<?= $points_0 ?>"><?= $points_0 ?></option>
-
 
743
                                        <option value="<?= $points_1 ?>"><?= $points_1 ?></option>
-
 
744
                                        <option value="<?= $points_2 ?>"><?= $points_2 ?></option>
-
 
745
                                        <option value="<?= $points_3 ?>"><?= $points_3 ?></option>
-
 
746
                                        <option value="<?= $points_4 ?>"><?= $points_4 ?></option>
-
 
747
                                    </select>
-
 
748
                                </td>
-
 
749
                            </tr>
-
 
750
                        </table>
-
 
751
                    </td>
-
 
752
                </tr>
-
 
753
            {{/for}}
-
 
754
        {{/for}}
-
 
755
    </tbody>
-
 
756
</table>