Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16845 Rev 16891
Línea 320... Línea 320...
320
 
320
 
321
    });
321
    });
322
JS;
322
JS;
323
$this->inlineScript()->captureEnd();
323
$this->inlineScript()->captureEnd();
324
?>
324
?>
325
  
-
 
326
<!-- Content Header (Page header) -->
-
 
-
 
325
 
327
<section class="content-header">
326
 
328
	<div class="container-fluid">
327
<div class="container">
329
    	<div class="row mb-2">
328
	<div class="card" id="">
330
        	<div class="col-sm-12">
329
	 	<div class="card-header">
331
            	<h1>LABEL_GROUPS</h1>
330
	 		<h6 class="card-title">LABEL_GROUPS</h6>
332
			</div>
-
 
333
		</div>
-
 
334
	</div><!-- /.container-fluid -->
-
 
335
</section>
-
 
336
 
-
 
337
<section class="content">
331
	 	</div>
338
	<div class="container-fluid">
332
	 	<div class="card-body">
339
    	<div class="row">
333
	 		<div class="row">
340
        	<div class="col-12">
-
 
341
				<div class="card">                    
-
 
-
 
334
	 	         <div class="col-12 mt-3">
342
					<div class="card-body">
335
	 	         
343
        	    		<table id="gridTable" class="table   table-bordered">
336
	 	         	<table id="gridTable" class="table   table-bordered">
344
                      		<thead>
337
                      		<thead>
345
        						<tr>
338
        						<tr>
346
                                	<th>LABEL_NAME</th>
339
                                	<th>LABEL_NAME</th>
347
                                  	<th>LABEL_ACTIONS</th>
340
                                  	<th>LABEL_ACTIONS</th>
348
                                </tr>
341
                                </tr>
349
                       		</thead>
342
                       		</thead>
350
                         	<tbody>
343
                         	<tbody>
351
                         	</tbody>
344
                         	</tbody>
-
 
345
                    	</table>
352
                    	</table>
346
                    	
353
                   	</div>
347
	 	         </div>
-
 
348
	 	     </div>
354
                   	<div class="card-footer clearfix">
349
	 	</div>
355
                   		<div style="float:right;">
350
	 	<div class="card-footer text-right">
356
							<button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
351
							<button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
357
							<?php if($allowAdd) : ?>
352
							<?php if($allowAdd) : ?>
358
							<button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
353
							<button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
359
							<?php endif; ?>
354
							<?php endif; ?>
360
						</div>
-
 
361
                 	</div>
-
 
362
          		</div>
-
 
363
           	</div>     
355
	 	</div>
364
        </div>          
356
	</div>
-
 
357
</div>
365
 	</div>
358
  
Línea 366... Línea 359...
366
</section> 	
359
 
367
 
360
 
368
<!-- The Modal -->
361
<!-- The Modal -->
369
<div class="modal" id="modal">
362
<div class="modal" id="modal">
Línea 374... Línea 367...
374
      		<div class="modal-header">
367
      		<div class="modal-header">
375
        		<h6 class="modal-title">LABEL_FUNCTIONS</h6>
368
        		<h6 class="modal-title">LABEL_FUNCTIONS</h6>
376
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
369
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
377
      		</div>
370
      		</div>
Línea 378... Línea -...
378
 
-
 
379
            <!-- Modal body -->
-
 
380
      		<div class="modal-body">
371
 
381
       			 <?php 
372
 <?php 
382
                    $form = $this->form;
373
                    $form = $this->form;
383
            		$form->setAttributes([
374
            		$form->setAttributes([
384
                        'method'    => 'post',
375
                        'method'    => 'post',
385
                        'name'      => 'form',
376
                        'name'      => 'form',
386
                        'id'        => 'form'
377
                        'id'        => 'form'
Línea 387... Línea 378...
387
                    ]);
378
                    ]);
388
    
379
    
389
                    $form->prepare();
380
                    $form->prepare();
-
 
381
                    echo $this->form()->openTag($form);
-
 
382
                    ?>		
390
                    echo $this->form()->openTag($form);
383
      		<div class="modal-body">
-
 
384
       						
391
                    ?>					
385
    					<div class="row">
392
    					<div class="form-group">
386
    						<div class="col-12 mt-3">
393
        					<?php 
387
        					<?php 
394
                            $element = $form->get('name');
388
                            $element = $form->get('name');
Línea 395... Línea 389...
395
                            $element->setOptions(['label' => 'LABEL_NAME']);
389
                            $element->setOptions(['label' => 'LABEL_NAME']);
396
                            $element->setAttributes(['class' => 'form-control']); 
390
                            $element->setAttributes(['class' => 'form-control']); 
397
                                            
391
                                            
-
 
392
                            echo $this->formLabel($element);
398
                            echo $this->formLabel($element);
393
                            echo $this->formText($element);
Línea 399... Línea -...
399
                            echo $this->formText($element);
-
 
400
                            ?>
-
 
401
						</div>
-
 
402
 
-
 
403
								
-
 
-
 
394
                            ?>
-
 
395
                            </div>
404
        				<div class="form-group">
396
						</div>
Línea 405... Línea 397...
405
                    		<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
397
 
406
                    		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
398
								
-
 
399
        	
407
                   		</div>
400
     	      		
408
     	      		<?php echo $this->form()->closeTag($form); ?>
401
      		</div>
-
 
402
 
Línea 409... Línea 403...
409
      		</div>
403
            <!-- Modal footer -->
410
 
404
      		<div class="modal-footer text-right">
411
            <!-- Modal footer -->
405
      			<button type="submit" class="btn btn-primary">LABEL_SAVE</button>