Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16843 Rev 16845
Línea 211... Línea 211...
211
                'targets': -1,
211
                'targets': -1,
212
                'orderable': false,
212
                'orderable': false,
213
                'render': function(data, type, row) {
213
                'render': function(data, type, row) {
214
                    s = '';
214
                    s = '';
215
                    if (allowView) {
215
                    if (allowView) {
216
                        s = s + '<button class="btn btn-default btn-view" data-href="' + data['link_view'] + '" data-toggle="tooltip" title="LABEL_VIEW"><i class="fa fa-external-link"></i> LABEL_VIEW </button>&nbsp;';
216
                        s = s + '<button class="btn btn-primary btn-view" data-href="' + data['link_view'] + '" data-toggle="tooltip" title="LABEL_VIEW"><i class="fa fa-external-link"></i> LABEL_VIEW </button>&nbsp;';
217
                    }
217
                    }
218
                    if (allowDelete) {
218
                    if (allowDelete) {
219
                        s = s + '<button class="btn btn-danger btn-delete" data-href="' + data['link_delete'] + '" data-toggle="tooltip" title="LABEL_DELETE"><i class="fa fa-trash"></i> LABEL_DELETE </button>&nbsp;';
219
                        s = s + '<button class="btn btn-danger btn-delete" data-href="' + data['link_delete'] + '" data-toggle="tooltip" title="LABEL_DELETE"><i class="fa fa-trash"></i> LABEL_DELETE </button>&nbsp;';
220
                    }
220
                    }
Línea 643... Línea 643...
643
       });
643
       });
644
    });
644
    });
Línea 645... Línea 645...
645
 
645
 
646
 
646
 
647
 
647
 
Línea 648... Línea 648...
648
    $('body').on('click', 'button.btn-search-email', function(e) {
648
    $('body').on('click', 'span.btn-search-email', function(e) {
Línea 1136... Línea 1136...
1136
$this->inlineScript()->captureEnd();
1136
$this->inlineScript()->captureEnd();
Línea 1137... Línea 1137...
1137
 
1137
 
1138
?>
1138
?>
Línea -... Línea 1139...
-
 
1139
<!-- Content Header (Page header) -->
-
 
1140
 
-
 
1141
<div class="container">
-
 
1142
	<div class="card"  id="row-list">
-
 
1143
		<div class="card-header">
Línea -... Línea 1144...
-
 
1144
			<h6 class="card-title">LABEL_APPLICATIONS</h6>
1139
<!-- Content Header (Page header) -->
1145
		</div>
1140
 
1146
 
1141
 
1147
       
-
 
1148
		<div class="card-body">
-
 
1149
			<div class="row">
-
 
1150
				<div class="col-12 mt-3">
-
 
1151
					<?php 
-
 
1152
					$form = $this->formFilter;
1142
<section class="content-header">
1153
					$form->setAttributes([
-
 
1154
					    'method'    => 'post',
-
 
1155
					    'name'      => 'form-filter',
-
 
1156
					    'id'        => 'form-filter'
-
 
1157
					]);
-
 
1158
					
-
 
1159
					$form->prepare();
-
 
1160
					echo $this->form()->openTag($form);
1143
   <div class="container-fluid">
1161
					
1144
      <div class="row mb-2">
1162
                    $element = $form->get('vacancy_id');
-
 
1163
                    $element->setAttributes(['class' => 'form-control']);
-
 
1164
                    $element->setOptions(['label' => 'LABEL_VACANCY']);
-
 
1165
                    ?>
-
 
1166
                       	<table class="table">
-
 
1167
                      		<tbody>
-
 
1168
                           		<tr>
-
 
1169
                       				<td><?php echo $this->formLabel($element); ?></td>
1145
         <div class="col-sm-12">
1170
                       				<td><?php echo $this->formSelect($element); ?></td>
-
 
1171
                       			</tr>
1146
            <h1 id="section-title">LABEL_APPLICATIONS</h1>
1172
                       		</tbody>
1147
         </div>
-
 
1148
      </div>
1173
                     	</table>
1149
   </div>
1174
                  	<?php echo $this->form()->closeTag($form); ?>
1150
   <!-- /.container-fluid -->
1175
				</div>
1151
</section>
-
 
1152
<section class="content">
1176
			</div>
1153
    <div class="container-fluid">
1177
			<div class="row">
1154
    	<div class="row" id="row-view" style="display: none">
-
 
1155
    	
1178
				<div class="col-12 mt-3">
1156
    	<div class="col-12">
1179
				
1157
 
1180
					<table id="gridTable" class="table   table-bordered">
1158
            <!-- Main content -->
1181
                  		<thead>
1159
            <div class="invoice p-3 ">
1182
                        	<tr>
1160
              <!-- title row -->
1183
                         		<th>LABEL_FIRST_NAME</th>
1161
              <div class="row">
1184
                        		<th>LABEL_LAST_NAME</th>
1162
                <div class="col-12">
1185
                            	<th>LABEL_EMAIL</th>
1163
                  <h4>
1186
                            	<th>LABEL_STATUS</th>
1164
                    <span id="view_title_name"></span> 
1187
                            	<th>LABEL_LEVEL</th>
1165
                    <small class="float-right">LABEL_LAST_DATE: <span id="view_title_last_date"></span></small>
1188
                          		<th>LABEL_ACTIONS</th>
1166
                  </h4>
1189
                        	</tr>
1167
                </div>
1190
                    	</thead>
-
 
1191
                     	<tbody>
-
 
1192
                		</tbody>
-
 
1193
                 	</table>
-
 
1194
                   		
-
 
1195
				</div>
-
 
1196
			</div>
-
 
1197
		</div>
-
 
1198
		<div class="card-footer text-right">
-
 
1199
			<button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
-
 
1200
        	<?php if ($allowAdd) : ?>
-
 
1201
       		<button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
-
 
1202
  			<?php endif; ?>
-
 
1203
		</div>
-
 
1204
	</div>
-
 
1205
	
-
 
1206
	
-
 
1207
	<div class="card" id="row-view" style="display: none">
-
 
1208
		<div class="card-header">
-
 
1209
			<h6 class="card-title">
-
 
1210
				<span id="view_title_name"></span> 
-
 
1211
                <small class="float-right">LABEL_LAST_DATE: <span id="view_title_last_date"></span></small>
1168
                <!-- /.col -->
1212
           	</h6>
1169
              </div>
1213
		</div>
1170
              <!-- info row -->
1214
		<div class="card-body">
1171
              <div class="row invoice-info">
1215
			<div class="row invoice-info">
1172
                <div class="col-sm-6 invoice-col">
1216
                <div class="col-sm-6 invoice-col">
1173
                  <strong>LABEL_VACANCY</strong> 
1217
                  <strong>LABEL_VACANCY</strong> 
Línea 1282... Línea 1326...
1282
                  </table>
1326
                  </table>
1283
                </div>
1327
                </div>
1284
                <!-- /.col -->
1328
                <!-- /.col -->
1285
              </div>
1329
              </div>
1286
              <!-- /.row -->
1330
              <!-- /.row -->
-
 
1331
		</div>
-
 
1332
		<div class="card-footer text-right">
-
 
1333
			<button type="button" class="btn btn-primary btn-close-application"><i class="far fa-time"></i> LABEL_CLOSE </button>
-
 
1334
		</div>
-
 
1335
	</div>
-
 
1336
	
-
 
1337
</div>
Línea 1287... Línea -...
1287
 
-
 
Línea 1288... Línea -...
1288
              
-
 
1289
 
-
 
1290
              <!-- this row will not appear when printing -->
-
 
1291
              <div class="row no-print">
-
 
1292
                <div class="col-12"">
-
 
1293
                  <button type="button" class="btn btn-default btn-close-application"><i class="far fa-time"></i> LABEL_CLOSE </button>
-
 
1294
                </div>
-
 
1295
              </div>
-
 
1296
            </div>
-
 
1297
            <!-- /.invoice -->
-
 
1298
          </div><!-- /.col -->
-
 
1299
    	
-
 
1300
    	
-
 
1301
    	
-
 
Línea 1302... Línea -...
1302
    	</div>
-
 
1303
    
-
 
1304
    
-
 
1305
		<div class="row" id="row-list">
-
 
1306
        	<div class="col-12">
-
 
1307
            	<div class="card">
-
 
1308
            		<div class="card-header">
-
 
1309
            			<?php 
-
 
1310
                        $form = $this->formFilter;
-
 
1311
                        $form->setAttributes([
-
 
1312
                            'method'    => 'post',
-
 
1313
                            'name'      => 'form-filter',
-
 
1314
                            'id'        => 'form-filter'
-
 
1315
                        ]);
-
 
1316
                    
-
 
1317
                        $form->prepare();
-
 
1318
                        echo $this->form()->openTag($form);
-
 
1319
                        
-
 
1320
                
-
 
1321
                        $element = $form->get('vacancy_id');
-
 
1322
                        $element->setAttributes(['class' => 'form-control']);
-
 
1323
                        $element->setOptions(['label' => 'LABEL_VACANCY']);
-
 
1324
                        ?>
-
 
1325
                   		<table class="table">
-
 
1326
                   			<tbody>
-
 
1327
                   				<tr>
-
 
1328
                   					<td>
-
 
1329
                   						<?php echo $this->formLabel($element); ?>
-
 
1330
                   					</td>
-
 
1331
                   					<td>
-
 
1332
                   						<?php echo $this->formSelect($element); ?>
-
 
1333
                   					</td>
-
 
1334
                   				</tr>
-
 
1335
                   			</tbody>
-
 
1336
                  		</table>
-
 
1337
            			<?php echo $this->form()->closeTag($form); ?>
-
 
1338
            		</div>
-
 
1339
                	<div class="card-body">
-
 
1340
                   		<table id="gridTable" class="table   table-hover">
-
 
1341
                      		<thead>
-
 
1342
                         		<tr>
-
 
1343
                            		<th>LABEL_FIRST_NAME</th>
-
 
1344
                            		<th>LABEL_LAST_NAME</th>
-
 
1345
                            		<th>LABEL_EMAIL</th>
-
 
1346
                            		<th>LABEL_STATUS</th>
-
 
1347
                            		<th>LABEL_LEVEL</th>
-
 
1348
                            		<th>LABEL_ACTIONS</th>
-
 
1349
                         		</tr>
-
 
1350
                      		</thead>
-
 
1351
                      		<tbody>
-
 
1352
                      		</tbody>
-
 
1353
                   		</table>
-
 
1354
                	</div>
-
 
1355
                	<div class="card-footer clearfix">
-
 
1356
                   		<div style="float:right;">
-
 
1357
                      		<button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
-
 
1358
                      		<?php if ($allowAdd) : ?>
-
 
1359
                                <button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
-
 
1360
                            <?php endif; ?>
-
 
1361
                   		</div>
-
 
1362
                	</div>
-
 
1363
             	</div>
-
 
Línea 1380... Línea 1354...
1380
    <div class="modal-dialog  modal-xl">
1354
    <div class="modal-dialog  modal-xl">
1381
        <div class="modal-content">
1355
        <div class="modal-content">
Línea 1382... Línea 1356...
1382
 
1356
 
1383
            <!-- Modal Header -->
1357
            <!-- Modal Header -->
1384
            <div class="modal-header">
1358
            <div class="modal-header">
1385
                <h4>LABEL_ADD_APPLICATION</h4>
1359
                <h6>LABEL_ADD_APPLICATION</h6>
1386
            </div>
1360
            </div>
1387
 
-
 
1388
            <!-- Modal body -->
-
 
1389
            <div class="modal-body">
1361
            
1390
                <?php
1362
     		<?php
1391
                $form = $this->formAdd;
1363
                $form = $this->formAdd;
1392
                $form->setAttributes([
1364
                $form->setAttributes([
1393
                    'method'    => 'post',
1365
                    'method'    => 'post',
1394
                    'name'      => 'form-add',
1366
                    'name'      => 'form-add',
Línea 1400... Línea 1372...
1400
                
1372
                
1401
                $element = $form->get('user_id');
1373
                $element = $form->get('user_id');
Línea 1402... Línea 1374...
1402
                echo $this->formHidden($element);
1374
                echo $this->formHidden($element);
-
 
1375
 
-
 
1376
                ?>
1403
 
1377
 
1404
                ?>
1378
            <!-- Modal body -->
1405
                <div class="form-group">
1379
            <div class="modal-body">
-
 
1380
 
-
 
1381
    			<div class="row">
1406
                	
1382
    				<div class="col-12 mt-3">
1407
                    <?php
1383
    				<?php
1408
                    $element = $form->get('email');
1384
                    $element = $form->get('email');
Línea 1409... Línea 1385...
1409
                    $element->setOptions(['label' => 'LABEL_EMAIL']);
1385
                    $element->setOptions(['label' => 'LABEL_EMAIL']);
1410
                    $element->setAttributes(['class' => 'form-control']);
1386
                    $element->setAttributes(['class' => 'form-control']);
-
 
1387
 
-
 
1388
                    echo $this->formLabel($element);
1411
 
1389
                    ?>
-
 
1390
    				
-
 
1391
    				
-
 
1392
    				<?php if($allowUserByEmail) : ?>
1412
                    echo $this->formLabel($element);
1393
    				
-
 
1394
    				<div class="input-group mb-3">
-
 
1395
                      <?php echo  $this->formText($element); ?>
-
 
1396
                      <span class="input-group-text btn-search-email">
1413
                    ?>
1397
 
-
 
1398
                      	<i class="fa fa-search" aria-hidden="true"></i></span>
-
 
1399
            
1414
                    <?php if($allowUserByEmail) : ?>
1400
                    </div>
-
 
1401
                    
1415
                   	<div class="input-group-append">
1402
     
1416
                   <?php endif; ?>
-
 
1417
                    <?php 
-
 
1418
                    echo $this->formText($element);
-
 
1419
                    ?>
-
 
1420
                    <?php if($allowUserByEmail) : ?>
-
 
1421
                   <button class="input-group-text btn-search-email" style="margin-left: 5px">
1403
                    <?php 
-
 
1404
                    else:
1422
                   		<i class="fa fa-search" aria-hidden="true"></i>
1405
                    echo $this->formText($element);
1423
                   </button>
1406
                    endif; ?>
-
 
1407
              
1424
                   <?php endif; ?>
1408
                    </div>
1425
                    </div>
1409
                </div>
1426
                </div>
1410
    			<div class="row">
1427
                <div class="form-group">
1411
    				<div class="col-12 mt-3">
1428
                    <?php
1412
                    <?php
Línea 1429... Línea 1413...
1429
                    $element = $form->get('first_name');
1413
                    $element = $form->get('first_name');
1430
                    $element->setOptions(['label' => 'LABEL_FIRST_NAME']);
1414
                    $element->setOptions(['label' => 'LABEL_FIRST_NAME']);
1431
                    $element->setAttributes(['class' => 'form-control']);
1415
                    $element->setAttributes(['class' => 'form-control']);
-
 
1416
 
1432
 
1417
                    echo $this->formLabel($element);
-
 
1418
                    echo $this->formText($element);
1433
                    echo $this->formLabel($element);
1419
                    ?>
1434
                    echo $this->formText($element);
1420
                    </div>
1435
                    ?>
1421
                </div>
1436
                </div>
1422
    			<div class="row">
1437
           		<div class="form-group">
1423
    				<div class="col-12 mt-3">
Línea 1438... Línea 1424...
1438
                    <?php
1424
                    <?php
1439
                    $element = $form->get('last_name');
1425
                    $element = $form->get('last_name');
1440
                    $element->setOptions(['label' => 'LABEL_LAST_NAME']);
1426
                    $element->setOptions(['label' => 'LABEL_LAST_NAME']);
-
 
1427
                    $element->setAttributes(['class' => 'form-control']);
1441
                    $element->setAttributes(['class' => 'form-control']);
1428
 
Línea -... Línea 1429...
-
 
1429
                    echo $this->formLabel($element);
-
 
1430
                    echo $this->formText($element);
1442
 
1431
                    ?>
1443
                    echo $this->formLabel($element);
1432
                    </div>
1444
                    echo $this->formText($element);
1433
                </div>
1445
                    ?>
1434
 
1446
                </div>
1435
           
1447
 
-
 
1448
                <div class="text-right">
-
 
1449
                    <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
-
 
1450
                    <button type="button" class="btn btn-light btn-cancel-modal-application">LABEL_CANCEL</button>
1436
            </div>
1451
                </div>
1437
     		<div class="modal-footer text-right">
1452
                <?php echo $this->form()->closeTag($form); ?>
1438
                    <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
Línea 1463... Línea 1449...
1463
    <div class="modal-dialog  modal-xl">
1449
    <div class="modal-dialog  modal-xl">
1464
        <div class="modal-content">
1450
        <div class="modal-content">
Línea 1465... Línea 1451...
1465
 
1451
 
1466
            <!-- Modal Header -->
1452
            <!-- Modal Header -->
1467
            <div class="modal-header">
1453
            <div class="modal-header">
1468
                <h4>LABEL_ADD_FILE</h4>
1454
                <h6>LABEL_ADD_FILE</h6>
Línea 1469... Línea -...
1469
            </div>
-
 
1470
 
-
 
1471
            <!-- Modal body -->
1455
            </div>
1472
            <div class="modal-body">
1456
 
1473
                <?php
1457
         <?php
1474
                $form = $this->formFile;
1458
                $form = $this->formFile;
1475
                $form->setAttributes([
1459
                $form->setAttributes([
1476
                    'method'    => 'post',
1460
                    'method'    => 'post',
Línea 1482... Línea 1466...
1482
                echo $this->form()->openTag($form);
1466
                echo $this->form()->openTag($form);
Línea 1483... Línea 1467...
1483
                
1467
                
-
 
1468
 
-
 
1469
 
Línea 1484... Línea 1470...
1484
 
1470
                ?>
-
 
1471
            <div class="modal-body">
1485
 
1472
       
1486
                ?>
1473
 
1487
 
1474
                <div class="row">
1488
                <div class="form-group">
1475
    				<div class="col-12 mt-3">
Línea 1489... Línea 1476...
1489
                    <?php
1476
                    <?php
1490
                    $element = $form->get('name');
1477
                    $element = $form->get('name');
1491
                    $element->setOptions(['label' => 'LABEL_NAME']);
1478
                    $element->setOptions(['label' => 'LABEL_NAME']);
-
 
1479
                    $element->setAttributes(['class' => 'form-control']);
1492
                    $element->setAttributes(['class' => 'form-control']);
1480
 
1493
 
1481
                    echo $this->formLabel($element);
-
 
1482
                    echo $this->formText($element);
1494
                    echo $this->formLabel($element);
1483
                    ?>
1495
                    echo $this->formText($element);
1484
                    </div>
1496
                    ?>
1485
                </div>
1497
                </div>
1486
           		<div class="row">
Línea 1498... Línea 1487...
1498
           		<div class="form-group">
1487
    				<div class="col-12 mt-3">
1499
                    <?php
1488
                    <?php
1500
                    $element = $form->get('file');
1489
                    $element = $form->get('file');
-
 
1490
                    $element->setOptions(['label' => 'LABEL_FILE']);
1501
                    $element->setOptions(['label' => 'LABEL_FILE']);
1491
                    $element->setAttributes(['class' => 'form-control']);
Línea -... Línea 1492...
-
 
1492
 
-
 
1493
                    echo $this->formLabel($element);
1502
                    $element->setAttributes(['class' => 'form-control']);
1494
                    echo $this->formFile($element);
1503
 
1495
                    ?>
1504
                    echo $this->formLabel($element);
1496
                    </div>
1505
                    echo $this->formFile($element);
1497
                </div>
1506
                    ?>
1498
 
1507
                </div>
-
 
1508
 
-
 
Línea 1509... Línea 1499...
1509
                <div class="text-right">
1499
 
1510
                    <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
1500
            </div>
1511
                    <button type="button" class="btn btn-light btn-cancel-modal-file">LABEL_CANCEL</button>
1501
                <div class="modal-footer text-right">
Línea 1524... Línea 1514...
1524
    <div class="modal-dialog  modal-xl">
1514
    <div class="modal-dialog  modal-xl">
1525
        <div class="modal-content">
1515
        <div class="modal-content">
Línea 1526... Línea 1516...
1526
 
1516
 
1527
            <!-- Modal Header -->
1517
            <!-- Modal Header -->
1528
            <div class="modal-header">
1518
            <div class="modal-header">
1529
                <h4>LABEL_EVALUATION</h4>
1519
                <h6>LABEL_EVALUATION</h6>
Línea 1530... Línea -...
1530
            </div>
-
 
1531
 
-
 
1532
            <!-- Modal body -->
1520
            </div>
1533
            <div class="modal-body">
1521
 
1534
                <?php
1522
    <?php
1535
                $form = $this->formComment;
1523
                $form = $this->formComment;
1536
                $form->setAttributes([
1524
                $form->setAttributes([
1537
                    'method'    => 'post',
1525
                    'method'    => 'post',
Línea 1543... Línea 1531...
1543
                echo $this->form()->openTag($form);
1531
                echo $this->form()->openTag($form);
Línea 1544... Línea 1532...
1544
                
1532
                
-
 
1533
 
-
 
1534
 
Línea 1545... Línea 1535...
1545
 
1535
                ?>
-
 
1536
            <div class="modal-body">
1546
 
1537
            
1547
                ?>
1538
 
1548
 
1539
               <div class="row">
1549
                <div class="form-group">
1540
    				<div class="col-12 mt-3">
Línea 1550... Línea 1541...
1550
                    <?php
1541
                    <?php
1551
                    $element = $form->get('points');
1542
                    $element = $form->get('points');
1552
                    $element->setOptions(['label' => 'LABEL_POINTS']);
1543
                    $element->setOptions(['label' => 'LABEL_POINTS']);
-
 
1544
                    $element->setAttributes(['class' => 'form-control']);
1553
                    $element->setAttributes(['class' => 'form-control']);
1545
 
1554
 
1546
                    echo $this->formLabel($element);
-
 
1547
                    echo $this->formText($element);
1555
                    echo $this->formLabel($element);
1548
                    ?>
1556
                    echo $this->formText($element);
1549
                    </div>
1557
                    ?>
1550
                </div>
1558
                </div>
1551
           		<div class="row">
Línea 1559... Línea 1552...
1559
           		<div class="form-group">
1552
    				<div class="col-12 mt-3">
1560
                    <?php
1553
                    <?php
1561
                    $element = $form->get('comment');
1554
                    $element = $form->get('comment');
-
 
1555
                    $element->setOptions(['label' => 'LABEL_COMMENT']);
1562
                    $element->setOptions(['label' => 'LABEL_COMMENT']);
1556
                    $element->setAttributes(['class' => 'form-control']);
Línea -... Línea 1557...
-
 
1557
 
-
 
1558
                    echo $this->formLabel($element);
1563
                    $element->setAttributes(['class' => 'form-control']);
1559
                    echo $this->formTextArea($element);
1564
 
1560
                    ?>
1565
                    echo $this->formLabel($element);
1561
                    </div>
1566
                    echo $this->formTextArea($element);
1562
                </div>
1567
                    ?>
1563
 
1568
                </div>
-
 
1569
 
-
 
Línea 1570... Línea 1564...
1570
                <div class="text-right">
1564
 
1571
                    <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
1565
            </div>
1572
                    <button type="button" class="btn btn-light btn-cancel-modal-comment">LABEL_CANCEL</button>
1566
                <div class="modal-footer text-right">
Línea 1586... Línea 1580...
1586
    <div class="modal-dialog  modal-xl">
1580
    <div class="modal-dialog  modal-xl">
1587
        <div class="modal-content">
1581
        <div class="modal-content">
Línea 1588... Línea 1582...
1588
 
1582
 
1589
            <!-- Modal Header -->
1583
            <!-- Modal Header -->
1590
            <div class="modal-header">
1584
            <div class="modal-header">
1591
                <h4>LABEL_LEVEL</h4>
1585
                <h6>LABEL_LEVEL</h6>
Línea 1592... Línea -...
1592
            </div>
-
 
1593
 
-
 
1594
            <!-- Modal body -->
1586
            </div>
1595
            <div class="modal-body">
1587
 
1596
                <?php
1588
 <?php
1597
                $form = $this->formLevel;
1589
                $form = $this->formLevel;
1598
                $form->setAttributes([
1590
                $form->setAttributes([
1599
                    'method'    => 'post',
1591
                    'method'    => 'post',
Línea 1605... Línea 1597...
1605
                echo $this->form()->openTag($form);
1597
                echo $this->form()->openTag($form);
Línea 1606... Línea 1598...
1606
                
1598
                
-
 
1599
 
-
 
1600
 
Línea 1607... Línea 1601...
1607
 
1601
                ?>
-
 
1602
            <div class="modal-body">
1608
 
1603
               
1609
                ?>
1604
 
1610
 
1605
                <div class="row">
1611
                <div class="form-group">
1606
    				<div class="col-12 mt-3">
Línea 1612... Línea 1607...
1612
                    <?php
1607
                    <?php
1613
                    $element = $form->get('level');
1608
                    $element = $form->get('level');
1614
                    $element->setOptions(['label' => 'LABEL_LEVEL']);
1609
                    $element->setOptions(['label' => 'LABEL_LEVEL']);
-
 
1610
                    $element->setAttributes(['class' => 'form-control']);
1615
                    $element->setAttributes(['class' => 'form-control']);
1611
 
Línea -... Línea 1612...
-
 
1612
                    echo $this->formLabel($element);
-
 
1613
                    echo $this->formSelect($element);
-
 
1614
                    ?>
1616
 
1615
                    </div>
1617
                    echo $this->formLabel($element);
1616
                </div>
1618
                    echo $this->formSelect($element);
1617
 
1619
                    ?>
1618
 
1620
                </div>
1619
  
1621
 
-
 
1622
 
-
 
1623
                <div class="text-right">
-
 
1624
                    <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
1620
            </div>
1625
                    <button type="button" class="btn btn-light btn-cancel-modal-level">LABEL_CANCEL</button>
1621
 
1626
                </div>
1622
              <div class="modal-footer text-right">
Línea 1638... Línea 1634...
1638
    <div class="modal-dialog  modal-xl">
1634
    <div class="modal-dialog  modal-xl">
1639
        <div class="modal-content">
1635
        <div class="modal-content">
Línea 1640... Línea 1636...
1640
 
1636
 
1641
            <!-- Modal Header -->
1637
            <!-- Modal Header -->
1642
            <div class="modal-header">
1638
            <div class="modal-header">
1643
                <h4>LABEL_STATUS</h4>
1639
                <h6>LABEL_STATUS</h6>
Línea 1644... Línea -...
1644
            </div>
-
 
1645
 
-
 
1646
            <!-- Modal body -->
1640
            </div>
1647
            <div class="modal-body">
1641
 
1648
                <?php
1642
			<?php
1649
                $form = $this->formStatus;
1643
                $form = $this->formStatus;
1650
                $form->setAttributes([
1644
                $form->setAttributes([
1651
                    'method'    => 'post',
1645
                    'method'    => 'post',
Línea 1657... Línea 1651...
1657
                echo $this->form()->openTag($form);
1651
                echo $this->form()->openTag($form);
Línea 1658... Línea 1652...
1658
                
1652
                
-
 
1653
 
-
 
1654
 
-
 
1655
                ?>
-
 
1656
                
Línea 1659... Línea 1657...
1659
 
1657
            <!-- Modal body -->
-
 
1658
            <div class="modal-body">
1660
 
1659
                
1661
                ?>
1660
 
1662
 
1661
                <div class="row">
1663
                <div class="form-group">
1662
    				<div class="col-12 mt-3">
Línea 1664... Línea 1663...
1664
                    <?php
1663
                    <?php
1665
                    $element = $form->get('status');
1664
                    $element = $form->get('status');
1666
                    $element->setOptions(['label' => 'LABEL_STATUS']);
1665
                    $element->setOptions(['label' => 'LABEL_STATUS']);
-
 
1666
                    $element->setAttributes(['class' => 'form-control']);
1667
                    $element->setAttributes(['class' => 'form-control']);
1667
 
Línea 1668... Línea -...
1668
 
-
 
1669
                    echo $this->formLabel($element);
-
 
1670
                    echo $this->formSelect($element);
-
 
1671
                    ?>
-
 
1672
                </div>
-
 
1673
 
1668
                    echo $this->formLabel($element);
Línea -... Línea 1669...
-
 
1669
                    echo $this->formSelect($element);
-
 
1670
                    ?>
-
 
1671
                    </div>
1674
 
1672
                </div>
-
 
1673
 
1675
                <div class="text-right">
1674
 
1676
                    <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
1675
            </div>
1677
                    <button type="button" class="btn btn-light btn-cancel-modal-status">LABEL_CANCEL</button>
1676
 
Línea 1689... Línea 1688...
1689
    <div class="modal-dialog  modal-xl">
1688
    <div class="modal-dialog  modal-xl">
1690
        <div class="modal-content">
1689
        <div class="modal-content">
Línea 1691... Línea 1690...
1691
 
1690
 
1692
            <!-- Modal Header -->
1691
            <!-- Modal Header -->
1693
            <div class="modal-header">
1692
            <div class="modal-header">
1694
                <h4>LABEL_INTERVIEW</h4>
1693
                <h6>LABEL_INTERVIEW</h6>
1695
            </div>
1694
            </div>
1696
 
-
 
1697
            <!-- Modal body -->
-
 
1698
            <div class="modal-body">
1695
              
1699
                <?php
1696
               <?php
1700
                $form = $this->formInterview;
1697
                $form = $this->formInterview;
1701
                $form->setAttributes([
1698
                $form->setAttributes([
1702
                    'method'    => 'post',
1699
                    'method'    => 'post',
1703
                    'name'      => 'form-interview',
1700
                    'name'      => 'form-interview',
Línea 1709... Línea 1706...
1709
                
1706
                
Línea -... Línea 1707...
-
 
1707
 
-
 
1708
 
1710
 
1709
                ?>
-
 
1710
                
1711
 
1711
            <div class="modal-body">
1712
                ?>
1712
 
1713
                
1713
         		<div class="row">
1714
         		<div class="form-group">
1714
    				<div class="col-12 mt-3">
Línea 1715... Línea 1715...
1715
                    <?php
1715
                    <?php
1716
                    $element = $form->get('user_id');
1716
                    $element = $form->get('user_id');
1717
                    $element->setOptions(['label' => 'LABEL_INTERVIEWED_BY']);
1717
                    $element->setOptions(['label' => 'LABEL_INTERVIEWED_BY']);
-
 
1718
                    $element->setAttributes(['class' => 'form-control']);
1718
                    $element->setAttributes(['class' => 'form-control']);
1719
 
Línea 1719... Línea 1720...
1719
 
1720
                    echo $this->formLabel($element);
-
 
1721
                    echo $this->formSelect($element);
1720
                    echo $this->formLabel($element);
1722
                    ?>
1721
                    echo $this->formSelect($element);
1723
                    </div>
1722
                    ?>
1724
                </div>
1723
                </div>
1725
 
Línea 1724... Línea 1726...
1724
 
1726
                <div class="row">
1725
                <div class="form-group">
1727
    				<div class="col-12 mt-3">
1726
                    <?php
1728
                    <?php
-
 
1729
                    $element = $form->get('type');
1727
                    $element = $form->get('type');
1730
                    $element->setOptions(['label' => 'LABEL_TYPE']);
Línea 1728... Línea 1731...
1728
                    $element->setOptions(['label' => 'LABEL_TYPE']);
1731
                    $element->setAttributes(['class' => 'form-control']);
-
 
1732
 
1729
                    $element->setAttributes(['class' => 'form-control']);
1733
                    echo $this->formLabel($element);
1730
 
1734
                    echo $this->formSelect($element);
1731
                    echo $this->formLabel($element);
1735
                    ?>
1732
                    echo $this->formSelect($element);
1736
                    </div>
Línea 1733... Línea 1737...
1733
                    ?>
1737
                </div>
1734
                </div>
1738
                 
1735
                 
1739
                 <div class="row">
-
 
1740
    				<div class="col-12 mt-3">
1736
                 <div class="form-group">
1741
                    <?php
Línea 1737... Línea -...
1737
                    <?php
-
 
1738
                    $element = $form->get('last_date');
-
 
1739
                    $element->setOptions(['label' => 'LABEL_LAST_DATE']);
-
 
1740
                    $element->setAttributes(['class' => 'form-control']);
-
 
1741
 
-
 
1742
                    echo $this->formLabel($element);
-
 
Línea -... Línea 1742...
-
 
1742
                    $element = $form->get('last_date');
Línea -... Línea 1743...
-
 
1743
                    $element->setOptions(['label' => 'LABEL_LAST_DATE']);
-
 
1744
                    $element->setAttributes(['class' => 'form-control']);
-
 
1745
 
-
 
1746
                    echo $this->formLabel($element);
-
 
1747
                    echo $this->formText($element);
1743
                    echo $this->formText($element);
1748
                    ?>
1744
                    ?>
1749
                    </div>
1745
                </div>
1750
                </div>
Línea 1746... Línea -...
1746
 
-
 
Línea 1747... Línea 1751...
1747
 
1751
 
1748
                <div class="text-right">
1752
 
1749
                    <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
1753
 
1750
                    <button type="button" class="btn btn-light btn-cancel-modal-interview">LABEL_CANCEL</button>
1754
            </div>
1751
                </div>
1755
 
1752
                <?php echo $this->form()->closeTag($form); ?>
1756
        	<div class="modal-footer text-right">
1753
            </div>
1757
           		<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
1754
 
1758
            	<button type="button" class="btn btn-light btn-cancel-modal-interview">LABEL_CANCEL</button>
1755
 
1759
       		</div>
1756
        </div>
1760
       		<?php echo $this->form()->closeTag($form); ?>
1757
    </div>
1761
        </div>
1758
</div>
1762
    </div>
Línea 1785... Línea 1789...
1785
        <td>{{>last_date}}</td>
1789
        <td>{{>last_date}}</td>
1786
        <td>{{>interviewer}}</td>
1790
        <td>{{>interviewer}}</td>
1787
        <td>{{>status}}</td>
1791
        <td>{{>status}}</td>
1788
        <td>
1792
        <td>
1789
            {{if link_report}}
1793
            {{if link_report}}
1790
            <button class="btn btn-default btn-report-interview" data-href="{{>link_report}}" data-toggle="tooltip" title="LABEL_DOWNLOAD"><i class="fa fa-download"></i> LABEL_DOWNLOAD </button>
1794
            <button class="btn btn-primary btn-report-interview" data-href="{{>link_report}}" data-toggle="tooltip" title="LABEL_DOWNLOAD"><i class="fa fa-download"></i> LABEL_DOWNLOAD </button>
1791
            {{/if}}
1795
            {{/if}}
1792
            {{if link_edit}}
1796
            {{if link_edit}}
1793
            <button class="btn btn-default btn-edit-interview" data-href="{{>link_edit}}" data-toggle="tooltip" title="LABEL_EDIT"><i class="fa fa-pencil"></i> LABEL_EDIT </button>
1797
            <button class="btn btn-primary btn-edit-interview" data-href="{{>link_edit}}" data-toggle="tooltip" title="LABEL_EDIT"><i class="fa fa-pencil"></i> LABEL_EDIT </button>
1794
            {{/if}}
1798
            {{/if}}
1795
            {{if link_delete}}
1799
            {{if link_delete}}
1796
            <button class="btn btn-danger btn-delete-interview" data-href="{{>link_delete}}" data-toggle="tooltip" title="LABEL_DELETE"><i class="fa fa-trash"></i> LABEL_DELETE </button>
1800
            <button class="btn btn-danger btn-delete-interview" data-href="{{>link_delete}}" data-toggle="tooltip" title="LABEL_DELETE"><i class="fa fa-trash"></i> LABEL_DELETE </button>
1797
            {{/if}} 
1801
            {{/if}} 
1798
        </td>
1802
        </td>