Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16840 Rev 16841
Línea 644... Línea 644...
644
                        
644
                        
645
 		<div class="card-body">
645
 		<div class="card-body">
Línea 646... Línea 646...
646
 			<h6 class="card-title">LABEL_USERS</h6>
646
 			<h6 class="card-title">LABEL_USERS</h6>
647
 			
647
 			
648
        	<div class="row">
648
        	<div class="row">
649
         		<div class="col-12 mb-3 mt-3">
649
         		<div class="col-12  mt-3">
650
         			<?php
650
         			<?php
651
                        $form = $this->formFilter;
651
                        $form = $this->formFilter;
652
                        $form->setAttributes([
652
                        $form->setAttributes([
Línea 678... Línea 678...
678
             		<?php echo $this->form()->closeTag($form); ?>
678
             		<?php echo $this->form()->closeTag($form); ?>
Línea 679... Línea 679...
679
 
679
 
680
             	</div>
680
             	</div>
681
			</div>	
681
			</div>	
682
			<div class="row">
682
			<div class="row">
683
         		<div class="col-12 mb-3 mt-3">
683
         		<div class="col-12  mt-3">
684
                        <table id="gridTable" class="table   table-hover">
684
                        <table id="gridTable" class="table   table-hover">
685
                            <thead>
685
                            <thead>
686
                                <tr>
686
                                <tr>
687
                                    <th>LABEL_FIRST_NAME</th>
687
                                    <th>LABEL_FIRST_NAME</th>
Línea 732... Línea 732...
732
                echo $this->form()->openTag($form);
732
                echo $this->form()->openTag($form);
733
                ?>
733
                ?>
734
            <div class="modal-body">
734
            <div class="modal-body">
Línea 735... Línea 735...
735
 
735
 
736
      			<div class="row">
736
      			<div class="row">
737
                	<div class="col-12 mb-3 mt-3">
737
                	<div class="col-12  mt-3">
738
                    <?php
738
                    <?php
739
                    $element = $form->get('first_name');
739
                    $element = $form->get('first_name');
740
                    $element->setOptions(['label' => 'LABEL_FIRST_NAME']);
740
                    $element->setOptions(['label' => 'LABEL_FIRST_NAME']);
Línea 744... Línea 744...
744
                    echo $this->formText($element);
744
                    echo $this->formText($element);
745
                    ?>
745
                    ?>
746
                    </div>
746
                    </div>
747
                </div>
747
                </div>
748
				<div class="row">
748
				<div class="row">
749
                	<div class="col-12 mb-3 mt-3">
749
                	<div class="col-12  mt-3">
750
                    <?php
750
                    <?php
751
                    $element = $form->get('last_name');
751
                    $element = $form->get('last_name');
752
                    $element->setOptions(['label' => 'LABEL_LAST_NAME']);
752
                    $element->setOptions(['label' => 'LABEL_LAST_NAME']);
753
                    $element->setAttributes(['class' => 'form-control', 'readonly' => 'readonly']);
753
                    $element->setAttributes(['class' => 'form-control', 'readonly' => 'readonly']);
Línea 756... Línea 756...
756
                    echo $this->formText($element);
756
                    echo $this->formText($element);
757
                    ?>
757
                    ?>
758
                    </div>
758
                    </div>
759
                </div>
759
                </div>
760
				<div class="row">
760
				<div class="row">
761
                	<div class="col-12 mb-3 mt-3">
761
                	<div class="col-12  mt-3">
762
                    <?php
762
                    <?php
763
                    $element = $form->get('email');
763
                    $element = $form->get('email');
764
                    $element->setOptions(['label' => 'LABEL_EMAIL']);
764
                    $element->setOptions(['label' => 'LABEL_EMAIL']);
765
                    $element->setAttributes(['class' => 'form-control', 'readonly' => 'readonly']);
765
                    $element->setAttributes(['class' => 'form-control', 'readonly' => 'readonly']);
Línea 768... Línea 768...
768
                    echo $this->formText($element);
768
                    echo $this->formText($element);
769
                    ?>
769
                    ?>
770
                    </div>
770
                    </div>
771
                </div>
771
                </div>
772
				<div class="row">
772
				<div class="row">
773
                	<div class="col-12 mb-3 mt-3">
773
                	<div class="col-12  mt-3">
774
                    <?php
774
                    <?php
775
                    $element = $form->get('password');
775
                    $element = $form->get('password');
776
                    $element->setOptions(['label' => 'LABEL_PASSWORD']);
776
                    $element->setOptions(['label' => 'LABEL_PASSWORD']);
777
                    $element->setAttributes(['class' => 'form-control']);
777
                    $element->setAttributes(['class' => 'form-control']);
Línea 780... Línea 780...
780
                    echo $this->formPassword($element);
780
                    echo $this->formPassword($element);
781
                    ?>
781
                    ?>
782
                    </div>
782
                    </div>
783
                </div>
783
                </div>
784
                <div class="row">
784
                <div class="row">
785
                	<div class="col-12 mb-3 mt-3">
785
                	<div class="col-12  mt-3">
786
                    <?php
786
                    <?php
787
                    $element = $form->get('confirmation');
787
                    $element = $form->get('confirmation');
788
                    $element->setOptions(['label' => 'LABEL_CONFIRMATION']);
788
                    $element->setOptions(['label' => 'LABEL_CONFIRMATION']);
789
                    $element->setAttributes(['class' => 'form-control']);
789
                    $element->setAttributes(['class' => 'form-control']);
Línea 833... Línea 833...
833
            <!-- Modal body -->
833
            <!-- Modal body -->
834
            <div class="modal-body">
834
            <div class="modal-body">
Línea 835... Línea 835...
835
  
835
  
836
 
836
 
Línea 837... Línea 837...
837
                <div class="row">
837
                <div class="row">
838
                	<div class="col-12 mb-3 mt-3">
838
                	<div class="col-12  mt-3">
839
 
839
 
Línea 881... Línea 881...
881
            <div class="modal-body">
881
            <div class="modal-body">
882
                <form>
882
                <form>
883
                    <input type="hidden" name="table-upload-users-key" id="table-upload-users-key">
883
                    <input type="hidden" name="table-upload-users-key" id="table-upload-users-key">
884
                </form>
884
                </form>
885
                <div class="row">
885
                <div class="row">
886
                    <div class="col-12 mb-3 mt-3" style="height: 300px;overflow: scroll;">
886
                    <div class="col-12  mt-3" style="height: 300px;overflow: scroll;">
887
                        <table id="gridTableUploadUsers" style="width: 100%" class="table table-bordered">
887
                        <table id="gridTableUploadUsers" style="width: 100%" class="table table-bordered">
888
                            <thead>
888
                            <thead>
889
                                <tr>
889
                                <tr>
890
                                    <th>LABEL_FIRST_NAME</th>
890
                                    <th>LABEL_FIRST_NAME</th>
891
                                    <th>LABEL_LAST_NAME</th>
891
                                    <th>LABEL_LAST_NAME</th>
Línea 938... Línea 938...
938
                ?>
938
                ?>
939
            <!-- Modal body -->
939
            <!-- Modal body -->
940
            <div class="modal-body">
940
            <div class="modal-body">
Línea 941... Línea 941...
941
         
941
         
942
                <div class="row">
942
                <div class="row">
943
                	<div class="col-12 mb-3 mt-3">
943
                	<div class="col-12  mt-3">
944
                    <?php
944
                    <?php
945
                    $element = $form->get('usertype_id');
945
                    $element = $form->get('usertype_id');
946
                    $element->setOptions(['label' => 'LABEL_USER_TYPE']);
946
                    $element->setOptions(['label' => 'LABEL_USER_TYPE']);