Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16905 | Rev 16928 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
15139 stevensc 1
<?php
1 www 2
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
3
$currentUser    = $this->currentUserHelper();
4
 
5
$roleName = $currentUser->getUserTypeId();
6
 
7
 
8
 
9
$routeDatatable = $this->url('microlearning/content/capsules');
10
 
11
$allowAdd       = $acl->isAllowed($roleName, 'microlearning/content/capsules/add') ? 1 : 0;
12
$allowEdit      = $acl->isAllowed($roleName, 'microlearning/content/capsules/edit') ? 1 : 0;
13
$allowDelete    = $acl->isAllowed($roleName, 'microlearning/content/capsules/delete') ? 1 : 0;
14
$allowUsers     = $acl->isAllowed($roleName, 'microlearning/content/capsules/users') ? 1 : 0;
15
 
16
 
17
 
16905 efrain 18
 
16822 efrain 19
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
20
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
1 www 21
 
16822 efrain 22
$this->inlineScript()->appendFile($this->basePath('assets/vendors/ckeditor/ckeditor.js'));
1 www 23
 
24
 
16822 efrain 25
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/css/fileinput.min.css'));
26
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fas/theme.css'));
1 www 27
 
16843 efrain 28
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/piexif.js'));
29
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/sortable.js'));
16822 efrain 30
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/fileinput.js'));
31
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/locales/es.js'));
32
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/fas/theme.js'));
33
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fas/theme.js'));
1 www 34
 
35
 
16822 efrain 36
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/jquery.validate.js'));
37
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/additional-methods.js'));
38
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/localization/messages_es.js'));
1 www 39
 
16822 efrain 40
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
41
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.css'));
1 www 42
 
16822 efrain 43
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
44
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
45
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
46
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.min.js'));
1 www 47
 
48
 
16822 efrain 49
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap4-toggle/css/bootstrap4-toggle.min.css'));
50
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
1 www 51
 
52
 
53
 
54
 
55
 
16822 efrain 56
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-input-number/input-number-format.jquery.js'));
57
 
58
 
1 www 59
$this->headStyle()->captureStart();
60
echo <<<CSS
61
 
62
 
63
#gridTableUsers {
64
    display: flex;
65
    flex-flow: column;
66
    width: 100%;
67
}
68
 
69
#gridTableUsers thead {
70
    flex: 0 0 auto;
71
}
72
 
73
#gridTableUsers tbody {
74
    flex: 1 1 auto;
75
    display: block;
76
    overflow-y: auto;
77
    overflow-x: hidden;
78
}
79
 
80
#gridTableUsers tr {
81
    width: 100%;
82
    display: table;
83
    table-layout: fixed;
84
}
6903 nelberth 85
.imagen-contaner{
86
	border:1px solid rgb(200,200,200);
87
	border-radius:5px;
6917 nelberth 88
	padding:10px;
89
	display:flex;
90
	flex-flow:column;
91
	align-items:center;
6903 nelberth 92
}
1 www 93
CSS;
94
$this->headStyle()->captureEnd();
95
 
96
$this->headLink()->captureStart();
97
 
98
$this->inlineScript()->captureStart();
99
echo <<<JS
100
    jQuery( document ).ready(function( $ ) {
101
 
102
        $.validator.setDefaults({
103
            debug: true,
104
            highlight: function(element) {
105
                $(element).addClass('is-invalid');
106
            },
107
            unhighlight: function(element) {
108
                $(element).removeClass('is-invalid');
109
            },
110
            errorElement: 'span',
111
            errorClass: 'error invalid-feedback',
112
            errorPlacement: function(error, element) {
113
                if(element.parent('.btn-file').length) {
114
                    error.insertAfter(element.parent().parent());
115
                } else if(element.parent('.toggle').length) {
116
                    error.insertAfter(element.parent().parent());
117
                } else {
118
                    error.insertAfter(element.parent());
119
                }
120
            }
121
        });
122
 
123
 
124
        $.fn.showFormErrorValidator = function(fieldname, errors) {
125
            var field = $(fieldname);
126
            if(field) {
127
                $(field).addClass('is-invalid');
128
 
129
 
130
                var error = $('<span id="' + fieldname +'-error" class="error invalid-feedback">' + errors + '</div>');
131
                if(element.parent('.btn-file').length) {
132
                    error.insertAfter(element.parent().parent());
133
                } else if(element.parent('.toggle').length) {
134
                    error.insertAfter(element.parent().parent());
135
                } else {
136
                    error.insertAfter(element.parent());
137
                }
138
            }
139
        };
140
 
141
 
142
 
143
        var allowEdit   = $allowEdit;
144
        var allowDelete = $allowDelete;
145
        var allowUsers  = $allowUsers;
146
 
147
 
148
        var gridTable = $('#gridTable').dataTable( {
149
            'processing': true,
150
            'serverSide': true,
151
            'searching': true,
152
            'order': [[ 0, 'asc' ]],
153
            'ordering':  true,
154
            'ordenable' : true,
155
            'responsive': true,
156
            'select' : false,
157
        	'paging': true,
158
            'pagingType': 'simple_numbers',
159
 
160
    		'ajax': {
161
    			'url' : '$routeDatatable',
162
    			'type' : 'get',
163
                'data': function ( d ) {
164
                    d.topic_uuid = $('#form-filter #topic_uuid').val();
165
 
166
                },
167
                'beforeSend': function (request) {
168
                  NProgress.start();
169
                },
170
                'dataFilter': function(response) {
171
                    var response = jQuery.parseJSON( response );
172
 
173
                    var json                = {};
174
                    json.recordsTotal       = 0;
175
                    json.recordsFiltered    = 0;
176
                    json.data               = [];
177
 
178
                    if(response.success) {
16905 efrain 179
                        $('#form-add').attr('action', response.data.link_add );
1 www 180
 
181
                        json.recordsTotal       = response.data.total;
182
                        json.recordsFiltered    = response.data.total;
183
                        json.data               = response.data.items;
184
                    } else {
185
                        $.fn.showError(response.data)
186
                    }
187
 
188
                    return JSON.stringify( json );
189
                }
190
    		},
191
            'language' : {
192
                'sProcessing':     'LABEL_DATATABLE_SPROCESSING',
193
                'sLengthMenu':     'LABEL_DATATABLE_SLENGTHMENU',
194
                'sZeroRecords':    'LABEL_DATATABLE_SZERORECORDS',
195
                'sEmptyTable':     'LABEL_DATATABLE_SEMPTYTABLE',
196
                'sInfo':           'LABEL_DATATABLE_SINFO',
197
                'sInfoEmpty':      'LABEL_DATATABLE_SINFOEMPTY',
198
                'sInfoFiltered':   'LABEL_DATATABLE_SINFOFILTERED',
199
                'sInfoPostFix':    '',
200
                'sSearch':         'LABEL_DATATABLE_SSEARCH',
201
                'sUrl':            '',
202
                'sInfoThousands':  ',',
203
                'sLoadingRecords': 'LABEL_DATATABLE_SLOADINGRECORDS',
204
                'oPaginate': {
205
                    'sFirst':    'LABEL_DATATABLE_SFIRST',
206
                    'sLast':     'LABEL_DATATABLE_SLAST',
207
                    'sNext':     'LABEL_DATATABLE_SNEXT',
208
                    'sPrevious': 'LABEL_DATATABLE_SPREVIOUS'
209
                },
210
                'oAria': {
211
                    'sSortAscending':  ': LABEL_DATATABLE_SSORTASCENDING',
212
                    'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
213
                },
214
            },
215
            'drawCallback': function( settings ) {
216
                NProgress.done();
16822 efrain 217
 
1 www 218
            },
219
            'aoColumns': [
220
                { 'mDataProp': 'name' },
221
                { 'mDataProp': 'details' },
222
                { 'mDataProp': 'images' },
223
                { 'mDataProp': 'actions' },
224
    	    ],
225
            'columnDefs': [
226
                {
227
                    'targets': 0,
228
                    'className' : 'text-vertical-middle',
229
                },
230
                {
231
                    'targets': -3,
232
                    'orderable': false,
233
                    'render' : function ( data, type, row ) {
234
                        var s = '';
235
                        s += 'LABEL_STATUS: ' + data['status']  + '<br/>';
236
 
237
                         if(allowUsers && row['actions']['link_total_users']  ) {
238
                            s += 'LABEL_TOTAL_USERS: ' + data['total_users']  + ' <button class="btn btn-view-total-users" data-href="' + row['actions']['link_total_users'] + '" data-toggle="tooltip" title="LABEL_VIEW"><i class="fa fa-external-link"></i></button> <br>';
239
                         } else {
240
                            s += 'LABEL_TOTAL_USERS: ' + data['total_users']  + '<br/>';
241
                         }
242
                         if(allowUsers && row['actions']['link_total_users_actives']  ) {
243
                            s += 'LABEL_TOTAL_USERS_ACTIVE: ' + data['total_users_active']  + ' <button class="btn btn-view-total-users" data-href="' + row['actions']['link_total_users_actives'] + '" data-toggle="tooltip" title="LABEL_VIEW"><i class="fa fa-external-link"></i></button> <br>';
244
                         } else {
245
                            s += 'LABEL_TOTAL_USERS_ACTIVE: ' + data['total_users_active']  + '<br/>';
246
                         }
247
 
248
                        return s;
249
                    }
250
                },
251
                {
252
                    'targets': -2,
253
                    'orderable': false,
254
                    'render' : function ( data, type, row ) {
255
                        s = '';
256
 
6903 nelberth 257
						if( data['marketplace'] )  {
258
                            s = s + '&nbsp; <img class="btn-view-image-marketplace" data-href="' + data['marketplace'] + '" data-toggle="tooltip" src="'+data['marketplace']+'" title="LABEL_VIEW" style="width: 40px; object-fit: cover; height: 40px;" /> '
1 www 259
                        }  else {
260
                            s = s + '';
261
                        }
6903 nelberth 262
 
263
                        if( data['image'] )  {
264
                            s = s + '&nbsp; <img class="btn-view-image-app" data-href="' + data['image'] + '" data-toggle="tooltip" src="'+data['image']+'" title="LABEL_VIEW" style="width: 40px; object-fit: cover; height: 40px;" /> '
1 www 265
                        }  else {
266
                            s = s + '';
267
                        }
268
 
269
 
270
 
6903 nelberth 271
 
272
 
1 www 273
                        return s;
274
                    }
275
                },
276
 
277
 
278
                {
279
                    'targets': -1,
280
                    'orderable': false,
281
                    'render' : function ( data, type, row ) {
282
                        s = '';
283
 
284
                        if(allowEdit && data['link_edit']  ) {
16906 efrain 285
                            s = s + '<button class="btn btn-info btn-sm btn-edit" data-href="' + data['link_edit']+ '" data-toggle="tooltip" title="LABEL_EDIT"><i class="fa fa-pen"></i> LABEL_EDIT </button>&nbsp;';
1 www 286
                        }
287
                        if(allowDelete && data['link_delete']  ) {
288
                            s = s + '<button class="btn btn-danger btn-sm btn-delete" data-href="' + data['link_delete']+ '" data-toggle="tooltip" title="LABEL_DELETE"><i class="fa fa-trash"></i> LABEL_DELETE </button>&nbsp;';
289
                        }
290
 
291
                        return s;
292
                    }
293
                }
294
              ],
295
        });
296
 
297
 
6823 nelberth 298
        var seleccionarCampo;
16905 efrain 299
    var validatorAdd = $('#form-add').validate({
1 www 300
        debug: true,
301
        onclick: false,
302
        onkeyup: false,
303
        ignore: [],
304
        rules: {
305
            'name': {
306
                required: true,
307
                maxlength: 128,
308
            },
309
            'description': {
310
                updateCkeditor:function() {
311
                        CKEDITOR.instances.description_add.updateElement();
312
                },
313
                required: true
314
            },
315
           'file': {
316
                required: true,
16905 efrain 317
                extension: 'jpg|jpeg|png',
318
                accept: 'image/jpg,image/jpeg,image/png'
1 www 319
            },
320
            'order' : {
321
                required: true,
322
                digits: true,
323
                min: 1,
324
                max: 250
325
            },
326
           'marketplace': {
16905 efrain 327
                required: false,
328
                extension: 'jpg|jpeg|png',
329
                accept: 'image/jpg,image/jpeg,image/png'
1 www 330
            },
331
            'status' : {
332
                required: true,
333
            },
334
            'privacy' : {
335
                required: true,
336
            },
337
            'type' : {
338
                required: true,
339
            },
340
            'cost' : {
341
                required: function() {
16905 efrain 342
                    return $('#form-add #type').val() == 's';
1 www 343
                },
344
                'number' : true,
345
                'min' : 0
346
            }
347
        },
348
        submitHandler: function(form)
349
        {
350
            var formdata = false;
351
            if (window.FormData){
352
                formdata = new FormData(form); //form[0]);
353
            }
354
 
6948 nelberth 355
            $('#boton_recortar').prop('disabled', true);
6859 nelberth 356
			NProgress.start();
1 www 357
            $.ajax({
358
                'dataType'  : 'json',
359
                'accept'    : 'application/json',
360
                'method'    : 'post',
16905 efrain 361
                'url'       :  $('#form-add').attr('action'),
1 www 362
                'data'      :  formdata,
363
                'processData': false,
364
                'contentType': false,
365
            }).done(function(response) {
366
                if(response['success']) {
367
                    $.fn.showSuccess(response['data']);
16905 efrain 368
 
369
					gridTable.api().ajax.reload(null, false);
370
 
371
                    $('#row-add').hide();
372
                    $('#row-edit').hide();
373
                    $('#row-listing').show();
374
 
375
 
1 www 376
                } else {
377
                    validatorAdd.resetForm();
378
                    if(jQuery.type(response['data']) == 'string') {
379
                        $.fn.showError(response['data']);
380
                    } else  {
381
                        $.each(response['data'], function( fieldname, errors ) {
16905 efrain 382
                            $.fn.showFormErrorValidator('#form-add #' + fieldname, errors);
1 www 383
                        });
384
                    }
385
                }
386
            }).fail(function( jqXHR, textStatus, errorThrown) {
6936 nelberth 387
				console.log(jqXHR)
1 www 388
                $.fn.showError(textStatus);
389
            }).always(function() {
6949 nelberth 390
				$('#boton_recortar').prop('disabled', false);
1 www 391
                NProgress.done();
392
            });
393
            return false;
394
        },
395
        invalidHandler: function(form, validator) {
396
 
397
        }
398
    });
399
 
16905 efrain 400
    var validatorEdit  = $('#form-edit').validate({
1 www 401
        debug: true,
402
        onclick: false,
403
        onkeyup: false,
404
        ignore: [],
405
        rules: {
406
              'name': {
407
                required: true,
408
                maxlength: 128,
409
            },
410
            'description': {
411
                updateCkeditor:function() {
412
                        CKEDITOR.instances.description_edit.updateElement();
413
                },
414
                required: true
415
            },
416
           'file': {
16905 efrain 417
                required: false,
418
                extension: 'jpg|jpeg|png',
419
                accept: 'image/jpg,image/jpeg,image/png'
1 www 420
            },
421
            'order' : {
422
                required: true,
423
                digits: true,
424
                min: 1,
425
                max: 250
426
            },
427
           'marketplace': {
16905 efrain 428
                required: false,
429
                extension: 'jpg|jpeg|png',
430
                accept: 'image/jpg,image/jpeg,image/png'
1 www 431
            },
432
            'status' : {
433
                required: true,
434
            },
435
            'privacy' : {
436
                required: true,
437
            },
438
            'type' : {
439
                required: true,
440
            },
441
            'cost' : {
442
                required: function() {
16905 efrain 443
                    return $('#form-edit #type').val() == 's';
1 www 444
                },
445
                'number' : true,
446
                'min' : 0
447
            }
448
        },
449
        submitHandler: function(form)
450
        {
451
            var formdata = false;
452
            if (window.FormData){
453
                formdata = new FormData(form); //form[0]);
454
            }
455
 
6992 nelberth 456
			$('#boton_recortar').prop('disabled', true);
457
			NProgress.start();
1 www 458
            $.ajax({
459
                'dataType'  : 'json',
460
                'accept'    : 'application/json',
461
                'method'    : 'post',
16905 efrain 462
                'url'       :  $('#form-edit').attr('action'),
1 www 463
                'data'      :  formdata,
464
                'processData': false,
465
                'contentType': false,
466
            }).done(function(response) {
467
                if(response['success']) {
468
                    $.fn.showSuccess(response['data']);
16905 efrain 469
 
1 www 470
                    gridTable.api().ajax.reload(null, false);
16905 efrain 471
 
472
                    $('#row-add').hide();
473
                    $('#row-edit').hide();
474
                    $('#row-listing').show();
475
 
476
 
1 www 477
                } else {
16905 efrain 478
                    validatorEdit.resetForm();
1 www 479
                    if(jQuery.type(response['data']) == 'string') {
480
                        $.fn.showError(response['data']);
481
                    } else  {
482
                        $.each(response['data'], function( fieldname, errors ) {
16905 efrain 483
                            $.fn.showFormErrorValidator('#form-edit #' + fieldname, errors);
1 www 484
                        });
485
                    }
486
                }
487
            }).fail(function( jqXHR, textStatus, errorThrown) {
16905 efrain 488
 
1 www 489
                $.fn.showError(textStatus);
490
            }).always(function() {
6996 nelberth 491
 
16905 efrain 492
 
1 www 493
                NProgress.done();
494
            });
495
            return false;
496
        },
497
        invalidHandler: function(form, validator) {
498
 
499
        }
500
    });
501
 
502
 
503
 
504
        $('body').on('click', '.btn-view-image-marketplace', function(e) {
505
            e.preventDefault();
506
 
507
            $('#image-marketplace').attr('src', $(this).data('href'));
16905 efrain 508
            $('#modalPreviewMarketPlace').modal('show');
1 www 509
            return false;
510
        });
511
 
512
        $('body').on('click', '.btn-view-image-app', function(e) {
513
            e.preventDefault();
514
 
515
            $('#image-app').attr('src', $(this).data('href'));
16905 efrain 516
            $('#modalPreviewImage').modal('show');
1 www 517
            return false;
518
        });
519
 
16905 efrain 520
        $('#form-add #order').inputNumberFormat({decimal: 0});
1 www 521
 
522
 
523
 
524
 
525
        $('body').on('click', 'button.btn-add', function(e) {
526
            e.preventDefault();
527
 
16905 efrain 528
            $('#form-add #name').val('');
529
            $('#form-add #order').val('1');
1 www 530
 
16905 efrain 531
            $('#form-add #privacy').val('');
532
            $('#form-add #status').val('');
533
            $('#form-add #cost').val('');
534
            $('#form-add #form-row-cost').hide();
535
            $('#form-add #file').fileinput('reset');
536
            $('#form-add #file').val('');
537
            $('#form-add #marketplace').fileinput('reset');
538
            $('#form-add #marketplace').val('');
1 www 539
 
540
            CKEDITOR.instances.description_add.setData('');
541
            validatorAdd.resetForm();
542
 
16905 efrain 543
            $('#row-listing').hide();
544
            $('#row-edit').hide();
545
            $('#row-add').show();
1 www 546
        });
547
 
548
 
16905 efrain 549
        $('#form-edit #order').inputNumberFormat({decimal: 0});
1 www 550
 
6859 nelberth 551
 
1 www 552
 
6991 nelberth 553
 
1 www 554
 
555
        $('body').on('click', 'button.btn-edit', function(e) {
556
            e.preventDefault();
7045 nelberth 557
			NProgress.start();
1 www 558
            var url = $(this).data('href');
559
            $.ajax({
560
                'dataType'  : 'json',
561
                'accept'    : 'application/json',
562
                'method'    : 'get',
563
                'url'       :  url,
564
            }).done(function(response) {
565
                if(response['success']) {
6980 nelberth 566
					console.log(response)
16905 efrain 567
                    $('#form-edit').attr('action',url);
568
                    $('#form-edit #name').val(response['data']['name']);
569
                    $('#form-edit #order').val(response['data']['order']);
570
                    $('#form-edit #privacy').val(response['data']['privacy']);
571
                    $('#form-edit #type').val(response['data']['type']);
572
                    $('#form-edit #status').val(response['data']['status']);
1 www 573
 
574
                    if('s' == response['data']['type']) {
16905 efrain 575
                        $('#form-edit #form-row-cost').show();
576
                        $('#form-edit #cost').val(response['data']['cost']);
1 www 577
                    } else {
16905 efrain 578
                        $('#form-edit #form-row-cost').hide();
579
                        $('#form-edit #cost').val('');
1 www 580
                    }
16905 efrain 581
 
582
                    $('#form-add #file').fileinput('reset');
583
                    $('#form-add #file').val('');
584
                    $('#form-add #marketplace').fileinput('reset');
585
                    $('#form-add #marketplace').val('');
1 www 586
 
587
                    CKEDITOR.instances.description_edit.setData(response['data']['description']);
588
                    validatorEdit.resetForm();
15027 stevensc 589
 
16905 efrain 590
                    $('#row-listing').hide();
591
                    $('#row-add').hide();
592
                    $('#row-edit').show();
593
 
1 www 594
                } else {
595
                    validatorEdit.resetForm();
596
                    if(jQuery.type(response['data']) == 'string') {
597
                        $.fn.showError(response['data']);
598
                    } else  {
599
                        $.each(response['data'], function( fieldname, errors ) {
16905 efrain 600
                            $.fn.showFormErrorValidator('#form-edit #' + fieldname, errors);
1 www 601
                        });
602
                    }
603
                }
604
            }).fail(function( jqXHR, textStatus, errorThrown) {
605
                $.fn.showError(textStatus);
606
            }).always(function() {
607
                NProgress.done();
608
            });
609
        });
610
 
6886 nelberth 611
 
1 www 612
 
613
 
8290 stevensc 614
        CKEDITOR.replace('description_add', {
615
			toolbar: [
616
                    { name: 'editing', items: ['Scayt'] },
617
                    { name: 'links', items: ['Link', 'Unlink'] },
618
                    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'] },
619
                    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', 'RemoveFormat'] },
620
                    '/',
621
                    { name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'SpecialChar'] },
622
                    { name: 'styles', items: ['Styles', 'Format'] },
623
                    { name: 'tools', items: ['Maximize'] }
624
                ],
625
                removePlugins: 'elementspath,Anchor',
626
                heigth: 100
627
		});
628
        CKEDITOR.replace('description_edit', {
629
			toolbar: [
630
                    { name: 'editing', items: ['Scayt'] },
631
                    { name: 'links', items: ['Link', 'Unlink'] },
632
                    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'] },
633
                    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', 'RemoveFormat'] },
634
                    '/',
635
                    { name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'SpecialChar'] },
636
                    { name: 'styles', items: ['Styles', 'Format'] },
637
                    { name: 'tools', items: ['Maximize'] }
638
                ],
639
                removePlugins: 'elementspath,Anchor',
640
                heigth: 100
641
		});
1 www 642
 
16905 efrain 643
        $('#form-add #type').change(function(e) {
1 www 644
            e.preventDefault();
645
 
646
            if('s' == $(this).val()) {
16905 efrain 647
                $('#form-add #form-row-cost').show();
1 www 648
            } else {
16905 efrain 649
                $('#form-add #cost').val(0);
650
                $('#form-add #form-row-cost').hide();
1 www 651
            }
652
 
653
        });
654
 
16905 efrain 655
        $('#form-edit #type').change(function(e) {
1 www 656
            e.preventDefault();
657
 
658
            if('s' == $(this).val()) {
16905 efrain 659
                $('#form-edit #form-row-cost').show();
1 www 660
            } else {
16905 efrain 661
                $('#form-edit #cost').val(0);
662
                $('#form-edit #form-row-cost').hide();
1 www 663
            }
664
 
665
        });
666
 
16905 efrain 667
        $('#form-add #order').inputNumberFormat({decimal: 0});
668
        $('#form-add #cost').inputNumberFormat({decimal: 2});
1 www 669
 
670
        $('#form-filter #topic_uuid').change(function(e) {
671
            e.preventDefault();
672
 
673
            gridTable.api().ajax.reload(null, false);
674
 
675
        });
676
 
677
 
678
 
679
 
680
 
681
    $('body').on('click', 'button.btn-view-total-users', function(e) {
682
        e.preventDefault();
683
 
684
        var href = $(this).data('href');
685
        NProgress.start();
686
        $.ajax({
687
            'dataType'  : 'json',
688
            'accept'    : 'application/json',
689
            'method'    : 'get',
690
            'url'       : href,
691
        }).done(function(response) {
692
            if(response['success']) {
693
 
694
                $('#table-users-topic').val(response['data']['topic']);
695
      			$('#table-users-capsule').val(response['data']['capsule']);
696
 
697
                $('#gridTableUsers tbody').empty();
698
 
699
                $.each(response['data']['items'], function(index, item) {
700
 
701
                    console.log(item);
702
 
703
                    var s = '<tr>';
704
                    s = s + '<td>' + item['first_name'] + '</td>';
705
                    s = s + '<td>' + item['last_name'] + '</td>';
706
                    s = s + '<td>' + item['email'] + '</td>';
707
 
708
                    s = s + '<td>';
709
                    if(item['details']['access']) {
710
                        s = s + 'LABEL_ACCESS : ' + item['details']['access'] + '<br>';
711
                    }
712
                    if(item['details']['paid_from']) {
713
                        s = s + 'LABEL_PAID_FROM : ' + item['details']['paid_from'] + '<br>';
714
                    }
715
                    if(item['details']['paid_to']) {
716
                        s = s + 'LABEL_PAID_TO : ' + item['details']['paid_to'] + '<br>';
717
                    }
718
 
719
                    s = s + '</td>';
720
                    s = s + '</tr>';
721
 
722
                    $('#gridTableUsers tbody').append(s);
723
 
724
 
725
                });
726
 
727
                $('#notificationUsersModal').modal('show');
728
 
729
            } else {
730
                $.fn.showError(response['data']);
731
 
732
            }
733
        }).fail(function( jqXHR, textStatus, errorThrown) {
734
            $.fn.showError(textStatus);
735
        }).always(function() {
736
 
737
            NProgress.done();
738
        });
739
        return false;
740
 
741
    });
742
    $('body').on('click', 'button.btn-refresh', function(e) {
743
        e.preventDefault();
744
        gridTable.api().ajax.reload(null, false);
745
    });
16822 efrain 746
 
747
    $('body').on('click', 'button.btn-delete', function(e) {
748
        e.preventDefault();
749
        var action = $(this).data('href');
750
 
751
 
752
          swal.fire({
753
            title: 'LABEL_ARE_YOU_SURE',
754
            icon: 'question',
755
            cancelButtonText: 'LABEL_NO',
756
            showCancelButton: true,
757
            confirmButtonText: 'LABEL_YES'
758
          }).then((result) => {
759
            if (result.isConfirmed) {
760
 
761
                    NProgress.start();
762
                    $.ajax({
763
                        'dataType'  : 'json',
764
                        'accept'    : 'application/json',
765
                        'method'    : 'post',
766
                        'url'       :  action,
767
                    }).done(function(response) {
768
                        if(response['success']) {
769
                            $.fn.showSuccess(response['data']);
770
                            gridTable.api().ajax.reload(null, false);
771
                        } else {
772
                            $.fn.showError(response['data']);
773
                        }
774
                    }).fail(function( jqXHR, textStatus, errorThrown) {
775
                        $.fn.showError(textStatus);
776
                    }).always(function() {
777
                        NProgress.done();
778
                    });
779
                }
780
           });
781
        });
1 www 782
 
6682 nelberth 783
 
16905 efrain 784
  $('#form-add #file').fileinput({
785
                theme: 'fa',
786
                language: 'es',
787
                showUpload: false,
788
                dropZoneEnabled: false,
789
                maxFileCount: 1,
790
                placeholder:  'LABEL_RECOMMENDED_SIZE $image_size',
791
                allowedFileExtensions: ['jpeg', 'jpg', 'png'],
792
            });
6682 nelberth 793
 
16905 efrain 794
  $('#form-add #marketplace').fileinput({
795
                theme: 'fa',
796
                language: 'es',
797
                showUpload: false,
798
                dropZoneEnabled: false,
799
                maxFileCount: 1,
800
                placeholder:  'LABEL_RECOMMENDED_SIZE $marketplace_size',
801
                allowedFileExtensions: ['jpeg', 'jpg', 'png'],
802
            });
803
 
804
            $('#form-edit #file').fileinput({
805
                theme: 'fa',
806
                language: 'es',
807
                showUpload: false,
808
                dropZoneEnabled: false,
809
                maxFileCount: 1,
810
                placeholder:  'LABEL_RECOMMENDED_SIZE $image_size',
811
                allowedFileExtensions: ['jpeg', 'jpg', 'png'],
812
            });
6682 nelberth 813
 
16906 efrain 814
            $('#form-add #marketplace').fileinput({
16905 efrain 815
                theme: 'fa',
816
                language: 'es',
817
                showUpload: false,
818
                dropZoneEnabled: false,
819
                maxFileCount: 1,
820
                placeholder:  'LABEL_RECOMMENDED_SIZE $marketplace_size',
821
                allowedFileExtensions: ['jpeg', 'jpg', 'png'],
822
            });
823
 
824
        $('body').on('click', 'button.btn-cancel', function(e) {
825
            e.preventDefault();
826
            $('#row-add').hide();
827
            $('#row-edit').hide();
828
            $('#row-listing').show();
829
 
830
        });
8583 nelberth 831
 
1 www 832
});
833
JS;
834
$this->inlineScript()->captureEnd();
835
?>
836
 
15139 stevensc 837
 
16905 efrain 838
<div class="container">
839
	<div class="card" id="row-listing">
840
	 	<div class="card-header">
841
	 		<h6 class="card-title">LABEL_CAPSULES</h6>
842
	 	</div>
843
	 	<div class="card-body">
844
	 						<?php
15139 stevensc 845
						$form = $this->form;
846
						$form->setAttributes([
847
							'name'    => 'form-filter',
848
							'id'      => 'form-filter',
849
						]);
850
 
851
						$form->prepare();
852
						echo $this->form()->openTag($form);
853
						?>
16905 efrain 854
						<div class="row">
855
	 	         <div class="col-12 mt-3">
15139 stevensc 856
							<?php
857
							$element = $form->get('topic_uuid');
858
 
859
							$element->setAttributes(['class' => 'form-control']);
860
							$element->setLabel('LABEL_TOPIC');
861
							echo $this->formLabel($element);
862
							echo $this->formSelect($element);
863
							?>
16905 efrain 864
 
865
	 	         </div>
866
	 	     </div>
1 www 867
						<?php echo $this->form()->closeTag($form); ?>
16905 efrain 868
			<div class="row">
869
	 	         <div class="col-12 mt-3">
870
					<table id="gridTable" class="table   table-bordered">
15139 stevensc 871
							<thead>
872
								<tr>
873
									<th>LABEL_NAME</th>
874
									<th>LABEL_DETAILS</th>
875
									<th>LABEL_IMAGES</th>
876
									<th>LABEL_ACTIONS</th>
877
								</tr>
878
							</thead>
16905 efrain 879
						<tbody>
880
						</tbody>
881
					</table>
882
	 	         </div>
883
	 	     </div>
884
	 	</div>
885
	 	<div class="card-footer text-right">
886
			<button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
887
			<?php if ($allowAdd) : ?>
888
			<button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
889
			<?php endif; ?>
890
	 	</div>
15139 stevensc 891
	</div>
16905 efrain 892
 
893
	<div class="card" id="row-add" style="display: none">
894
	 	<div class="card-header">
895
	 		<h6 class="card-title">LABEL_ADD_CAPSULE</h6>
896
	 	</div>
897
	 	<?php
15139 stevensc 898
		$form = $this->formAdd;
899
		$form->setAttributes([
900
			'method'  => 'post',
901
			'action'  => '',
16905 efrain 902
			'name'    => 'form-add',
903
			'id'      => 'form-add',
15139 stevensc 904
		]);
1 www 905
 
15139 stevensc 906
		$form->prepare();
907
		echo $this->form()->openTag($form);
908
		?>
16905 efrain 909
	 	<div class="card-body">
910
	 		<div class="row">
911
	 	         <div class="col-12 mt-3">
912
    			<?php
913
    			$element = $form->get('name');
914
 
915
    			$element->setAttributes(['class' => 'form-control']);
916
    			$element->setOptions(['label' => 'LABEL_NAME']);
917
    			echo $this->formLabel($element);
918
    			echo $this->formText($element);
919
    			?>
920
    			</div>
921
    		</div>
922
	 		<div class="row">
923
	 	         <div class="col-12 mt-3">
924
        			<?php
925
        			$element = $form->get('description');
926
        			$element->setAttributes(['id' => 'description_add', 'class' => 'form-control', 'rows' => '2', 'class' => 'form-control']);
927
        			$element->setOptions(['label' => 'LABEL_DESCRIPTION']);
928
        			echo $this->formLabel($element);
929
        			echo $this->formTextArea($element);
930
        			?>
931
        		</div>
932
        	</div>
933
	 		<div class="row">
934
	 	         <div class="col-12 mt-3">
935
        			<?php
936
        			$element = $form->get('order');
937
        			$element->setAttributes(['class' => 'form-control']);
938
        			$element->setOptions(['label' => 'LABEL_ORDER']);
939
        			echo $this->formLabel($element);
940
        			echo $this->formText($element);
941
        			?>
942
        		</div>
15139 stevensc 943
			</div>
16905 efrain 944
	 		<div class="row">
945
	 	         <div class="col-12 mt-3">
946
    			<?php
947
    			$element = $form->get('status');
948
    			$element->setAttributes(['class' => 'form-control']);
949
    			$element->setOptions(['label' => 'LABEL_STATUS']);
950
    			echo $this->formLabel($element);
951
    			echo $this->formSelect($element);
952
    			?>
953
				</div>
954
			</div>
955
	 		<div class="row">
956
	 	         <div class="col-12 mt-3">
957
        			<?php
958
        			$element = $form->get('privacy');
959
        			$element->setAttributes(['class' => 'form-control']);
960
        			$element->setOptions(['label' => 'LABEL_PRIVACY']);
961
        			echo $this->formLabel($element);
962
        			echo $this->formSelect($element);
963
        			?>
964
        		</div>
965
        	</div>
966
			<div class="row">
967
	 			<div class="col-12 mt-3">
968
        			<?php
969
        			$element = $form->get('type');
970
        			$element->setAttributes(['class' => 'form-control']);
971
        			$element->setOptions(['label' => 'LABEL_TYPE']);
972
        			echo $this->formLabel($element);
973
        			echo $this->formSelect($element);
974
        			?>
975
        		</div>
976
        	</div>
15139 stevensc 977
 
16905 efrain 978
		  	<div class="row"  id="form-row-cost">
979
	 			<div class="col-12 mt-3">
980
        			<?php
981
        			$element = $form->get('cost');
982
        			$element->setAttributes(['class' => 'form-control']);
983
        			$element->setOptions(['label' => 'LABEL_COST']);
984
        			echo $this->formLabel($element);
985
        			echo $this->formText($element);
986
        			?>
987
				</div>
988
			</div>
989
			<div class="row">
990
	 	 		<div class="col-12 mt-3">
991
                        <?php
992
                        $element = $form->get('file');
993
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
994
                        $element->setAttributes(['class' => 'form-control']);
995
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
996
                        echo $this->formLabel($element);
997
                        echo $this->formFile($element);
998
                        ?>
999
            	</div>
1000
           	</div>
1001
           	<div class="row">
1002
	 	         <div class="col-12 mt-3">
1003
                        <?php
1004
                        $element = $form->get('marketplace');
1005
                        $element->setOptions(['label' => 'LABEL_MARKETPLACE']);
1006
                        $element->setAttributes(['class' => 'form-control']);
1007
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
1008
                        echo $this->formLabel($element);
1009
                        echo $this->formFile($element);
1010
                        ?>
1011
          		</div>
1012
          	</div>
1013
	 	</div>
1014
	 	<div class="card-footer text-right">
1015
			<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
1016
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
1017
	 	</div>
1018
	 	<?php echo $this->form()->closeTag($form); ?>
15139 stevensc 1019
	</div>
16905 efrain 1020
 
1021
	<div class="card" id="row-edit" style="display: none">
1022
	 	<div class="card-header">
1023
	 		<h6 class="card-title">LABEL_EDIT_CAPSULE</h6>
1024
	 	</div>
1025
	 	<?php
15139 stevensc 1026
		$form = $this->formEdit;
1027
		$form->setAttributes([
16905 efrain 1028
		    'method'    => 'post',
1029
		    'name'      => 'form-edit',
1030
		    'id'        => 'form-edit'
15139 stevensc 1031
		]);
1 www 1032
 
15139 stevensc 1033
		$form->prepare();
1034
		echo $this->form()->openTag($form);
1035
		?>
16905 efrain 1036
	 	<div class="card-body">
1037
	 		<div class="row">
1038
	 	         <div class="col-12 mt-3">
1039
    			<?php
1040
    			$element = $form->get('name');
1041
 
1042
    			$element->setAttributes(['class' => 'form-control']);
1043
    			$element->setOptions(['label' => 'LABEL_NAME']);
1044
    			echo $this->formLabel($element);
1045
    			echo $this->formText($element);
1046
    			?>
1047
    			</div>
1048
    		</div>
1049
	 		<div class="row">
1050
	 	         <div class="col-12 mt-3">
1051
        			<?php
1052
        			$element = $form->get('description');
1053
        			$element->setAttributes(['id' => 'description_edit', 'class' => 'form-control', 'rows' => '2', 'class' => 'form-control']);
1054
        			$element->setOptions(['label' => 'LABEL_DESCRIPTION']);
1055
        			echo $this->formLabel($element);
1056
        			echo $this->formTextArea($element);
1057
        			?>
1058
        		</div>
1059
        	</div>
1060
	 		<div class="row">
1061
	 	         <div class="col-12 mt-3">
1062
        			<?php
1063
        			$element = $form->get('order');
1064
        			$element->setAttributes(['class' => 'form-control']);
1065
        			$element->setOptions(['label' => 'LABEL_ORDER']);
1066
        			echo $this->formLabel($element);
1067
        			echo $this->formText($element);
1068
        			?>
1069
        		</div>
15139 stevensc 1070
			</div>
16905 efrain 1071
	 		<div class="row">
1072
	 	         <div class="col-12 mt-3">
1073
    			<?php
1074
    			$element = $form->get('status');
1075
    			$element->setAttributes(['class' => 'form-control']);
1076
    			$element->setOptions(['label' => 'LABEL_STATUS']);
1077
    			echo $this->formLabel($element);
1078
    			echo $this->formSelect($element);
1079
    			?>
1080
				</div>
1081
			</div>
1082
	 		<div class="row">
1083
	 	         <div class="col-12 mt-3">
1084
        			<?php
1085
        			$element = $form->get('privacy');
1086
        			$element->setAttributes(['class' => 'form-control']);
1087
        			$element->setOptions(['label' => 'LABEL_PRIVACY']);
1088
        			echo $this->formLabel($element);
1089
        			echo $this->formSelect($element);
1090
        			?>
1091
        		</div>
1092
        	</div>
1093
			<div class="row">
1094
	 			<div class="col-12 mt-3">
1095
        			<?php
1096
        			$element = $form->get('type');
1097
        			$element->setAttributes(['class' => 'form-control']);
1098
        			$element->setOptions(['label' => 'LABEL_TYPE']);
1099
        			echo $this->formLabel($element);
1100
        			echo $this->formSelect($element);
1101
        			?>
1102
        		</div>
1103
        	</div>
15139 stevensc 1104
 
16905 efrain 1105
		  	<div class="row"  id="form-row-cost">
1106
	 			<div class="col-12 mt-3">
1107
        			<?php
1108
        			$element = $form->get('cost');
1109
        			$element->setAttributes(['class' => 'form-control']);
1110
        			$element->setOptions(['label' => 'LABEL_COST']);
1111
        			echo $this->formLabel($element);
1112
        			echo $this->formText($element);
1113
        			?>
1114
				</div>
1115
			</div>
1116
			<div class="row">
1117
	 	 		<div class="col-12 mt-3">
1118
                        <?php
1119
                        $element = $form->get('file');
1120
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
1121
                        $element->setAttributes(['class' => 'form-control']);
1122
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
1123
                        echo $this->formLabel($element);
1124
                        echo $this->formFile($element);
1125
                        ?>
1126
            	</div>
1127
           	</div>
1128
           	<div class="row">
1129
	 	         <div class="col-12 mt-3">
1130
                        <?php
1131
                        $element = $form->get('marketplace');
1132
                        $element->setOptions(['label' => 'LABEL_MARKETPLACE']);
1133
                        $element->setAttributes(['class' => 'form-control']);
1134
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
1135
                        echo $this->formLabel($element);
1136
                        echo $this->formFile($element);
1137
                        ?>
1138
          		</div>
1139
          	</div>
1140
	 	</div>
1141
	 	<div class="card-footer text-right">
1142
			<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
1143
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
1144
	 	</div>
1145
	 	<?php echo $this->form()->closeTag($form); ?>
15139 stevensc 1146
	</div>
16905 efrain 1147
</div>
15139 stevensc 1148
 
1149
 
1150
 
1151
 
1152
 
16905 efrain 1153
 
1 www 1154
<!-- The Modal -->
16905 efrain 1155
<div class="modal" id="modalPreviewMarketPlace">
1 www 1156
	<div class="modal-dialog">
1157
		<div class="modal-content">
15139 stevensc 1158
			<!-- Modal Header -->
1159
			<div class="modal-header">
16845 efrain 1160
				<h6 class="modal-title">LABEL_IMAGE_MARKETPLACE</h6>
16822 efrain 1161
				<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
15139 stevensc 1162
			</div>
1 www 1163
 
15139 stevensc 1164
			<!-- Modal body -->
1165
			<div class="modal-body text-center">
1166
				<img src="" class="img img-responsive" style="width: 300px; height: auto" id="image-marketplace" />
1167
			</div>
1168
 
1169
			<!-- Modal footer -->
16891 efrain 1170
			<div class="modal-footer text-right">
15139 stevensc 1171
				<button type="button" class="btn btn-danger" data-dismiss="modal">LABEL_CLOSE</button>
1172
			</div>
1173
		</div>
1 www 1174
	</div>
15139 stevensc 1175
</div>
1 www 1176
 
1177
 
1178
<!-- The Modal -->
16905 efrain 1179
<div class="modal" id="modalPreviewImage">
1 www 1180
	<div class="modal-dialog ">
15139 stevensc 1181
		<div class="modal-content">
1 www 1182
 
15139 stevensc 1183
			<!-- Modal Header -->
1184
			<div class="modal-header">
16845 efrain 1185
				<h6 class="modal-title">LABEL_IMAGE</h6>
16822 efrain 1186
				<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
15139 stevensc 1187
			</div>
1 www 1188
 
15139 stevensc 1189
			<!-- Modal body -->
1190
			<div class="modal-body text-center">
1 www 1191
				<img src="" class="img img-responsive" style="width: 300px; height: auto" id="image-app" />
15139 stevensc 1192
			</div>
1193
 
1194
			<!-- Modal footer -->
16891 efrain 1195
			<div class="modal-footer text-right">
15139 stevensc 1196
				<button type="button" class="btn btn-danger" data-dismiss="modal">LABEL_CLOSE</button>
1197
			</div>
1198
		</div>
1 www 1199
	</div>
15139 stevensc 1200
</div>
1 www 1201
 
1202
 
1203
 
15139 stevensc 1204
 
1205
 
1206
 
1 www 1207
<!-- The Modal -->
1208
<div class="modal" id="notificationUsersModal">
1209
	<div class="modal-dialog modal-xl">
15139 stevensc 1210
		<div class="modal-content">
1 www 1211
 
15139 stevensc 1212
			<!-- Modal Header -->
1213
			<div class="modal-header">
16845 efrain 1214
				<h6 class="modal-title">LABEL_USERS</h6>
16822 efrain 1215
				<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
15139 stevensc 1216
			</div>
1 www 1217
 
15139 stevensc 1218
			<!-- Modal body -->
1219
			<div class="modal-body">
1220
				<form>
16905 efrain 1221
					<div class="row">
1222
						<div class="col-12 mt-3">
15139 stevensc 1223
						<label>LABEL_TOPIC</label>
1224
						<input type="text" readonly="readonly" id="table-users-topic" class="form-control">
16905 efrain 1225
						</div>
1226
					</div>
1227
					<div class="row">
1228
						<div class="col-12 mt-3">
15139 stevensc 1229
						<label>LABEL_CAPSULE</label>
1230
						<input type="text" readonly="readonly" id="table-users-capsule" class="form-control">
16905 efrain 1231
						</div>
1232
					</div>
15139 stevensc 1233
				</form>
16905 efrain 1234
				<div class="row">
1235
					<div class="col-12 mt-3">
1236
        				<div style="height: 300px;overflow: scroll;">
1237
        					<table id="gridTableUsers" style="width: 100%" class="table   table-bordered">
1238
        						<thead>
1239
        							<tr>
1240
        								<th>LABEL_FIRST_NAME</th>
1241
        								<th>LABEL_LAST_NAME</th>
1242
        								<th>LABEL_EMAIL</th>
1243
        								<th>LABEL_DETAILS</th>
1244
        							</tr>
1245
        						</thead>
1246
        						<tbody>
1247
        						</tbody>
1248
        					</table>
1249
        				</div>
1250
    				</div>
1251
    			</div>
1 www 1252
 
15139 stevensc 1253
			</div>
1 www 1254
 
15139 stevensc 1255
			<!-- Modal footer -->
16891 efrain 1256
			<div class="modal-footer text-right">
15139 stevensc 1257
				<button type="button" class="btn btn-danger" data-dismiss="modal">LABEL_CLOSE</button>
1258
			</div>
1259
 
1260
		</div>
15027 stevensc 1261
	</div>
15139 stevensc 1262
</div>