Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 8824 Rev 8825
Línea 503... Línea 503...
503
        $form->prepare();
503
        $form->prepare();
504
        echo $this->form()->openTag($form);
504
        echo $this->form()->openTag($form);
505
        ?>
505
        ?>
506
        <div class="modal-content">
506
        <div class="modal-content">
507
            <div class="modal-header">
507
            <div class="modal-header">
508
                <h3 class="modal-title">LABEL_NEW_EVALUATION</h3>
508
                <h3 class="modal-title">LABEL_NEW_CANDIDATE</h3>
509
            </div>
509
            </div>
510
            <div class="modal-body">  
510
            <div class="modal-body">
-
 
511
                <div class="form-group">
-
 
512
                    <?php
-
 
513
                    $element = $form->get('title');
-
 
514
                    $element->setOptions(['label' => 'LABEL_TITLE']);
-
 
515
                    $element->setAttributes(['class' => 'form-control']);
-
 
516
                    echo $this->formLabel($element);
-
 
517
                    echo $this->formText($element);
-
 
518
                    ?>
-
 
519
                </div>
511
                <div class="form-group">
520
                <div class="form-group">
512
              	   <?php 
521
              	   <?php 
513
                     $element = $form->get('title');
522
                     $element = $form->get('coment');
514
                     $element->setOptions(['label' => 'LABEL_FIRST_NAME']);
523
                     $element->setAttributes(['class' => 'form-control']);    
515
                     $element->setAttributes(['class' => 'form-control']);
524
                     $element->setOptions(['label' => 'LABEL_COMMENT']);                                       
516
                     echo $this->formLabel($element);
525
                     echo $this->formLabel($element);
517
                     echo $this->formText($element);
526
                     echo $this->formTextArea($element);
518
                    ?>
527
                    ?>
519
      	        </div>
528
      	        </div>
520
                <div class="form-group">
529
                <div class="form-group">
521
                    <?php
530
                    <?php
522
                    $element = $form->get('file');
531
                    $element = $form->get('file');
523
                    $element->setAttributes(['class' => 'form-control', 'accept' => 'pdf/docx']);
532
                    $element->setAttributes(['class' => 'form-control', 'accept' => 'pdf/docx']);
524
                    $element->setOptions(['label' => 'LABEL_EVALUATION']);
533
                    $element->setOptions(['label' => 'LABEL_CURRICULUM']);
525
                    echo $this->formLabel($element);
534
                    echo $this->formLabel($element);
526
                    ?>
535
                    ?>
527
                    <div class="file-loading">
536
                    <div class="file-loading">
528
                        <?php echo $this->formFile($element); ?>
537
                        <?php echo $this->formFile($element); ?>
529
                    </div>
538
                    </div>
530
                </div>
539
                </div>
531
                <div class="form-group">
-
 
532
                    <?php
-
 
533
                    $element = $form->get('coment');
-
 
534
                    $element->setAttributes(['class' => 'form-control']);
-
 
535
                    $element->setOptions(['label' => 'LABEL_COMMENT']);
-
 
536
                    echo $this->formLabel($element);
-
 
537
                    echo $this->formTextArea($element);
-
 
538
                    ?>
-
 
539
                </div>
-
 
540
                <div class="modal-footer">
-
 
541
                    <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
-
 
542
                    <button type="button" class="btn btn-default btn-add-cancel">LABEL_CANCEL</button>
-
 
543
                </div>
-
 
544
            </div>
540
            </div>
545
            
-
 
546
            <?php echo $this->form()->closeTag($form); ?>
541
            <?php echo $this->form()->closeTag($form); ?>
547
        </div>
542
        </div>
548
    </div>
543
    </div>
549
</div>
544
</div>