Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16929 Rev 16941
Línea 325... Línea 325...
325
        });
325
        });
Línea 326... Línea 326...
326
 
326
 
327
        $('#form #privacy').select2({
327
        $('#form #privacy').select2({
328
            theme: 'bootstrap-5',
328
            theme: 'bootstrap-5',
-
 
329
            width: '100%',
329
            width: '100%',
330
            dropdownParent: $('#modal'),
Línea 330... Línea 331...
330
        });
331
        });
Línea 331... Línea 332...
331
 
332
 
332
        $('#form #status').bootstrapToggle({'on' : 'LABEL_ACTIVE',  'off' : 'LABEL_INACTIVE', 'width' : '160px', 'height' : '40px'});
333
        $('#form #status').bootstrapToggle({'on' : 'LABEL_ACTIVE',  'off' : 'LABEL_INACTIVE', 'width' : '160px', 'height' : '40px'});
333
 
334
 
334
    });
335
    });
Línea 335... Línea 336...
335
JS;
336
JS;
336
$this->inlineScript()->captureEnd();
337
$this->inlineScript()->captureEnd();
337
?>
338
?>
338
 
339
 
339
<div class="container">
340
<div class="container">
340
	<div class="card" id="">
341
    <div class="card" id="">
341
	 	<div class="card-header">
342
        <div class="card-header">
342
	 		<h6 class="card-title">LABEL_MY_COACH_CATEGORIES</h6>
343
            <h6 class="card-title">LABEL_MY_COACH_CATEGORIES</h6>
343
	 	</div>
344
        </div>
344
	 	<div class="card-body">
345
        <div class="card-body">
345
	 		<div class="row">
346
            <div class="row">
346
	 	         <div class="col-12 mt-3">
347
                <div class="col-12 mt-3">
347
	 	         
348
 
348
	 	          <table id="gridTable" class="table table-bordered">
349
                    <table id="gridTable" class="table table-bordered">
349
                            <thead>
350
                        <thead>
350
                                <tr>
351
                            <tr>
351
                                    <th>LABEL_NAME</th>
352
                                <th>LABEL_NAME</th>
352
                                    <th>LABEL_PRIVACY</th>
353
                                <th>LABEL_PRIVACY</th>
353
                                    <th>LABEL_ACTIVE</th>
354
                                <th>LABEL_ACTIVE</th>
354
                                    <th>LABEL_ACTIONS</th>
355
                                <th>LABEL_ACTIONS</th>
355
                                </tr>
356
                            </tr>
356
                            </thead>
357
                        </thead>
357
                            <tbody>
358
                        <tbody>
358
                            </tbody>
359
                        </tbody>
359
                        </table>
360
                    </table>
360
	 	         
361
 
361
	 	         </div>
362
                </div>
362
	 	     </div>
363
            </div>
363
	 	</div>
364
        </div>
364
	 	<div class="card-footer text-right">
365
        <div class="card-footer text-right">
365
        	<button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
366
            <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
366
          	<?php if ($allowAdd) : ?>
367
            <?php if ($allowAdd) : ?>
Línea 367... Línea 368...
367
       		<button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
368
                <button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
Línea 402... Línea 403...
402
                $form->prepare();
403
                $form->prepare();
403
                echo $this->form()->openTag($form);
404
                echo $this->form()->openTag($form);
Línea 404... Línea 405...
404
 
405
 
405
                ?>
406
                ?>
406
                <div class="card-body">
407
                <div class="card-body">
407
   
408
 
408
        	 		<div class="row">
409
                    <div class="row">
409
        	 	         <div class="col-12 mt-3">
410
                        <div class="col-12 mt-3">
410
                 			<?php
411
                            <?php
411
                            $element = $form->get('name');
412
                            $element = $form->get('name');
412
                            $element->setOptions(['label' => 'LABEL_NAME']);
413
                            $element->setOptions(['label' => 'LABEL_NAME']);
Línea 413... Línea 414...
413
                            $element->setAttributes(['class' => 'form-control']);
414
                            $element->setAttributes(['class' => 'form-control']);
414
 
415
 
415
                            echo $this->formLabel($element);
416
                            echo $this->formLabel($element);
416
                            echo $this->formText($element);
-
 
417
                            ?>
-
 
418
               			</div>
-
 
419
       				</div>
-
 
420
                            
-
 
421
        	 		<div class="row">
-
 
422
        	 	         <div class="col-12 mt-3">
-
 
423
                        <?php
-
 
424
                        $element = $form->get('privacy');
-
 
425
                        $element->setAttributes(['class' => 'form-control']);
-
 
426
                        $element->setOptions(['label' => 'LABEL_PRIVACY']);
-
 
427
 
-
 
428
                        echo $this->formLabel($element);
-
 
429
                        echo $this->formSelect($element);
-
 
430
                        ?>
417
                            echo $this->formText($element);
431
 
418
                            ?>
432
                    	</div>
-
 
433
                   	</div> 	
-
 
434
 
-
 
435
	 				<div class="row">
-
 
436
	 	         		<div class="col-12 mt-3">
-
 
437
                        <?php
-
 
438
                        $element = $form->get('status');
-
 
439
                        $element->setOptions(['label' => 'LABEL_STATUS']);
-
 
440
                        // echo $this->formLabel($element);
-
 
Línea 441... Línea 419...
441
                        echo $this->formCheckbox($element);
419
                        </div>
-
 
420
                    </div>
442
                        ?>
421
 
-
 
422
                    <div class="row">
-
 
423
                        <div class="col-12 mt-3">
-
 
424
                            <?php
Línea -... Línea 425...
-
 
425
                            $element = $form->get('privacy');
-
 
426
                            $element->setAttributes(['class' => 'form-control']);
-
 
427
                            $element->setOptions(['label' => 'LABEL_PRIVACY']);
-
 
428
 
-
 
429
                            echo $this->formLabel($element);
443
 
430
                            echo $this->formSelect($element);
-
 
431
                            ?>
-
 
432
 
-
 
433
                        </div>
-
 
434
                    </div>
-
 
435
 
-
 
436
                    <div class="row">
-
 
437
                        <div class="col-12 mt-3">
-
 
438
                            <?php
-
 
439
                            $element = $form->get('status');
-
 
440
                            $element->setOptions(['label' => 'LABEL_STATUS']);
-
 
441
                            // echo $this->formLabel($element);
-
 
442
                            echo $this->formCheckbox($element);
Línea -... Línea 443...
-
 
443
                            ?>
Línea -... Línea 444...
-
 
444
 
444
                    	</div>
445
                        </div>
445
					</div>
446
                    </div>
446
 
447
 
447
            </div>
448
                </div>
448
 
449
 
-
 
450
 
449
 
451
                <?php echo $this->form()->closeTag($form); ?>
450
            <?php echo $this->form()->closeTag($form); ?>
-
 
Línea -... Línea 452...
-
 
452
                <!-- Modal footer -->
451
            <!-- Modal footer -->
453
                <div class="modal-footer text-right">
452
            <div class="modal-footer text-right">
-
 
453
                <button type="submit" id="submitBtn" form="form" class="btn btn-primary">LABEL_SAVE</button>
454
                    <button type="submit" id="submitBtn" form="form" class="btn btn-primary">LABEL_SAVE</button>
454
                 <button type="button" class="btn btn-light" data-bs-dismiss="modal">LABEL_CLOSE</button>
455
                    <button type="button" class="btn btn-light" data-bs-dismiss="modal">LABEL_CLOSE</button>