Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 1449 Rev 1455
Línea 609... Línea 609...
609
</div>
609
</div>
610
<!-- Create/Edit Form -->
610
<!-- Create/Edit Form -->
611
<div class="row" id="row-form" style="display: none; padding: 16px;">
611
<div class="row" id="row-form" style="display: none; padding: 16px;">
612
   <div class="col-xs-12 col-md-12">
612
   <div class="col-xs-12 col-md-12">
613
      <form action="#" name="form-main" id="form-main">
613
      <form action="#" name="form-main" id="form-main">
614
        <input type="hidden" name="formatted_address" id="formatted_address" />
614
         <input type="hidden" name="formatted_address" id="formatted_address" />
615
        <input type="hidden" name="address1" id="address1" />
615
         <input type="hidden" name="address1" id="address1" />
616
        <input type="hidden" name="address2" id="address2" />
616
         <input type="hidden" name="address2" id="address2" />
617
        <input type="hidden" name="country" id="country" />
617
         <input type="hidden" name="country" id="country" />
618
        <input type="hidden" name="state" id="state" />
618
         <input type="hidden" name="state" id="state" />
619
        <input type="hidden" name="city1" id="city1" />
619
         <input type="hidden" name="city1" id="city1" />
620
        <input type="hidden" name="city2" id="city2" />
620
         <input type="hidden" name="city2" id="city2" />
621
        <input type="hidden" name="postal_code" id="postal_code" />
621
         <input type="hidden" name="postal_code" id="postal_code" />
622
        <input type="hidden" name="latitude" id="latitude" />
622
         <input type="hidden" name="latitude" id="latitude" />
623
        <input type="hidden" name="longitude" id="longitude" />
623
         <input type="hidden" name="longitude" id="longitude" />
624
         <div class="form-group">
624
          <div class="form-group">
625
            <label for="form-name">LABEL_FIRST_NAME</label>
625
             <label for="form-name">LABEL_FIRST_NAME</label>
626
            <input type="text" name="form-name" id="form-name" class="form-control" maxlength="50" />
626
             <input type="text" name="form-name" id="form-name" class="form-control" maxlength="50" />
627
         </div>
627
          </div>
628
         <div class="form-group">
628
          <div class="form-group">
629
            <label for="job_description_id">LABEL_POSITION_EVALUATED</label>
629
             <label for="job_description_id">LABEL_POSITION_EVALUATED</label>
630
            <select name="job_description_id" id="job_description_id" class="form-control">
630
             <select name="job_description_id" id="job_description_id" class="form-control">
631
               <option value="">LABEL_SELECT</option>
631
                <option value="">LABEL_SELECT</option>
632
               <?php foreach ($jobsDescription as $rs): ?>
632
                <?php foreach ($jobsDescription as $rs): ?>
633
               <option value="<?php echo $rs->uuid;?>"><?php echo $rs->name;?></option>
633
                <option value="<?php echo $rs->uuid;?>"><?php echo $rs->name;?></option>
634
               <?php endforeach; ?>
634
                <?php endforeach; ?>
635
            </select>
635
             </select>
636
         </div>
636
          </div>
637
         <div class="form-group">
637
          <div class="form-group">
638
            <label for="location_search">LABEL_LOCATION</label>
638
             <label for="location_search">LABEL_LOCATION</label>
639
            <input type="text" name="location_search" id="location_search" class="form-control" maxlength="50" />
639
             <input type="text" name="location_search" id="location_search" class="form-control" maxlength="50" />
640
         </div>
640
          </div>
641
         <div class="form-group">
641
          <div class="form-group">
642
            <label for="job_category_id">LABEL_JOB_CATEGORY</label>
642
             <label for="job_category_id">LABEL_JOB_CATEGORY</label>
643
            <select name="job_category_id" id="job_category_id" class="form-control">
643
             <select name="job_category_id" id="job_category_id" class="form-control">
644
               <option value="">LABEL_SELECT</option>
644
                <option value="">LABEL_SELECT</option>
645
               <?php foreach ($jobCategory as $rs): ?>
645
                <?php foreach ($jobCategory as $rs): ?>
646
               <option value="<?php echo $rs->uuid;?>"><?php echo $rs->name;?></option>
646
                <option value="<?php echo $rs->uuid;?>"><?php echo $rs->name;?></option>
647
               <?php endforeach; ?>
647
                <?php endforeach; ?>
648
            </select>
648
             </select>
649
         </div>
649
          </div>
650
         <div class="form-group">
650
          <div class="form-group">
651
            <label for="industry_id">LABEL_INDUSTRY</label>
651
             <label for="industry_id">LABEL_INDUSTRY</label>
652
            <select name="industry_id" id="industry_id" class="form-control">
652
             <select name="industry_id" id="industry_id" class="form-control">
653
               <option value="">LABEL_SELECT</option>
653
                <option value="">LABEL_SELECT</option>
654
               <?php foreach ($industry as $rs): ?>
654
                <?php foreach ($industry as $rs): ?>
655
               <option value="<?php echo $rs->uuid;?>"><?php echo $rs->name;?></option>
655
                <option value="<?php echo $rs->uuid;?>"><?php echo $rs->name;?></option>
656
               <?php endforeach; ?>
656
                <?php endforeach; ?>
657
            </select>
657
             </select>
658
         </div>
658
          </div>
659
         <div class="form-group">
659
          <div class="form-group">
660
            <label for="last_date">LABEL_LAST_DATE_OF_APPLICATION</label>
660
             <label for="last_date">LABEL_LAST_DATE_OF_APPLICATION</label>
661
            <input type="text" name="last_date" id="last_date" class="form-control" maxlength="50" />
661
             <input type="text" name="last_date" id="last_date" class="form-control" maxlength="50" />
662
         </div>
662
          </div>
663
            <label for="description">LABEL_DESCRIPTION</label>
663
             <label for="description">LABEL_DESCRIPTION</label>
664
            <!--  ckeditor -->
664
             <!--  ckeditor -->
665
            <textarea  name="description" id="description" rows="5" class="ckeditor form-control"></textarea>
665
             <textarea  name="description" id="description" rows="5" class="ckeditor form-control"></textarea>
666
         </div>
666
          </div>
667
         <div class="form-group">
667
          <div class="form-group">
668
            <label for="form-status">LABEL_STATUS</label>
668
             <label for="form-status">LABEL_STATUS</label>
669
            <select name="form-status" id="form-status" class="form-control">
669
             <select name="form-status" id="form-status" class="form-control">
670
               <option value="<?php echo $status_inactive; ?>">LABEL_INACTIVE</option>
670
                <option value="<?php echo $status_inactive; ?>">LABEL_INACTIVE</option>
671
               <option value="<?php echo $status_active; ?>">LABEL_ACTIVE</option>
671
                <option value="<?php echo $status_active; ?>">LABEL_ACTIVE</option>
672
            </select>
672
             </select>
673
         </div>
673
          </div>
674
        
674
                
675
         <br />	
675
          <br />	
676
         <div class="row">
676
          <div class="row">
677
            <div class="col-xs-12 col-md-12">
677
             <div class="col-xs-12 col-md-12">
678
               <div class="panel-group" id="rows"></div>
678
                <div class="panel-group" id="rows"></div>
679
            </div>
679
             </div>
680
         </div>
680
          </div>
681
 
681
                
682
         <div class="form-group">
682
          <div class="form-group">
683
             <button type="button" class="btn btn-primary btn-form-save-close">LABEL_SAVE</button>
683
              <button type="button" class="btn btn-primary btn-form-save-close">LABEL_SAVE</button>
684
            <button type="button" class="btn btn-secondary btn-edit-cancel">LABEL_CANCEL</button>
684
             <button type="button" class="btn btn-secondary btn-edit-cancel">LABEL_CANCEL</button>
685
         </div>
685
          </div>
686
      </form>
686
      </form>
687
   </div>
687
   </div>
688
</div>
688
</div>
689
<!-- Create/Edit Form-->
689
<!-- Create/Edit Form-->