Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16932 Rev 16941
Línea 1055... Línea 1055...
1055
    });
1055
    });
Línea 1056... Línea 1056...
1056
 
1056
 
1057
    $('#form-level #level').select2({ 
1057
    $('#form-level #level').select2({ 
1058
        theme: 'bootstrap-5',
1058
        theme: 'bootstrap-5',
-
 
1059
        width: '100%',
1059
        width: '100%',
1060
        dropdownParent: $('#modal-level'),
Línea 1060... Línea 1061...
1060
    });
1061
    });
1061
    
1062
    
1062
    $('#form-status #status').select2({ 
1063
    $('#form-status #status').select2({ 
-
 
1064
        theme: 'bootstrap-5',
1063
        theme: 'bootstrap-5',
1065
        width: '100%',
Línea 1064... Línea 1066...
1064
        width: '100%',
1066
        dropdownParent: $('#modal-status'),
1065
    });
1067
    });
1066
 
1068
 
-
 
1069
    
1067
    
1070
    $('#form-interview #type').select2({ 
1068
    $('#form-interview #type').select2({ 
1071
        theme: 'bootstrap-5',
Línea 1069... Línea 1072...
1069
        theme: 'bootstrap-5',
1072
        width: '100%',
1070
        width: '100%',
1073
        dropdownParent: $('#modal-interview'),
1071
    });
1074
    });
-
 
1075
    
1072
 
1076
    
1073
    
1077
    $('#form-interview #user_id').select2({ 
1074
    $('#form-interview #user_id').select2({ 
1078
        theme: 'bootstrap-5',
1075
        theme: 'bootstrap-5',
1079
        width: '100%',
1076
        width: '100%',
1080
        dropdownParent: $('#modal-interview'),
-
 
1081
    });
1077
    });
1082
    
Línea 1078... Línea 1083...
1078
 
1083
    $('#form-interview #last_date').datetimepicker({
Línea 1096... Línea 1101...
1096
 
1101
 
1097
?>
1102
?>
Línea 1098... Línea 1103...
1098
<!-- Content Header (Page header) -->
1103
<!-- Content Header (Page header) -->
1099
 
1104
 
1100
<div class="container">
1105
<div class="container">
1101
	<div class="card"  id="row-list">
1106
    <div class="card" id="row-list">
1102
		<div class="card-header">
1107
        <div class="card-header">
1103
			<h6 class="card-title">LABEL_APPLICATIONS</h6>
1108
            <h6 class="card-title">LABEL_APPLICATIONS</h6>
1104
		</div>
1109
        </div>
1105
 
1110
 
1106
       
1111
 
1107
		<div class="card-body">
1112
        <div class="card-body">
1108
			<div class="row">
1113
            <div class="row">
1109
				<div class="col-12 mt-3">
1114
                <div class="col-12 mt-3">
1110
					<?php 
1115
                    <?php
1111
					$form = $this->formFilter;
1116
                    $form = $this->formFilter;
1112
					$form->setAttributes([
1117
                    $form->setAttributes([
1113
					    'method'    => 'post',
1118
                        'method'    => 'post',
1114
					    'name'      => 'form-filter',
1119
                        'name'      => 'form-filter',
1115
					    'id'        => 'form-filter'
1120
                        'id'        => 'form-filter'
1116
					]);
1121
                    ]);
1117
					
1122
 
1118
					$form->prepare();
1123
                    $form->prepare();
1119
					echo $this->form()->openTag($form);
1124
                    echo $this->form()->openTag($form);
1120
					
1125
 
1121
                    $element = $form->get('vacancy_id');
1126
                    $element = $form->get('vacancy_id');
1122
                    $element->setAttributes(['class' => 'form-control']);
1127
                    $element->setAttributes(['class' => 'form-control']);
1123
                    $element->setOptions(['label' => 'LABEL_VACANCY']);
1128
                    $element->setOptions(['label' => 'LABEL_VACANCY']);
1124
                    ?>
1129
                    ?>
1125
                       	<table class="table">
1130
                    <table class="table">
1126
                      		<tbody>
1131
                        <tbody>
1127
                           		<tr>
1132
                            <tr>
1128
                       				<td><?php echo $this->formLabel($element); ?></td>
1133
                                <td><?php echo $this->formLabel($element); ?></td>
1129
                       				<td><?php echo $this->formSelect($element); ?></td>
1134
                                <td><?php echo $this->formSelect($element); ?></td>
1130
                       			</tr>
1135
                            </tr>
1131
                       		</tbody>
1136
                        </tbody>
1132
                     	</table>
1137
                    </table>
1133
                  	<?php echo $this->form()->closeTag($form); ?>
1138
                    <?php echo $this->form()->closeTag($form); ?>
1134
				</div>
1139
                </div>
1135
			</div>
1140
            </div>
1136
			<div class="row">
1141
            <div class="row">
1137
				<div class="col-12 mt-3">
1142
                <div class="col-12 mt-3">
1138
				
1143
 
1139
					<table id="gridTable" class="table   table-bordered">
1144
                    <table id="gridTable" class="table   table-bordered">
1140
                  		<thead>
1145
                        <thead>
1141
                        	<tr>
1146
                            <tr>
1142
                         		<th>LABEL_FIRST_NAME</th>
1147
                                <th>LABEL_FIRST_NAME</th>
1143
                        		<th>LABEL_LAST_NAME</th>
1148
                                <th>LABEL_LAST_NAME</th>
1144
                            	<th>LABEL_EMAIL</th>
1149
                                <th>LABEL_EMAIL</th>
1145
                            	<th>LABEL_STATUS</th>
1150
                                <th>LABEL_STATUS</th>
1146
                            	<th>LABEL_LEVEL</th>
1151
                                <th>LABEL_LEVEL</th>
1147
                          		<th>LABEL_ACTIONS</th>
1152
                                <th>LABEL_ACTIONS</th>
1148
                        	</tr>
1153
                            </tr>
1149
                    	</thead>
1154
                        </thead>
1150
                     	<tbody>
1155
                        <tbody>
1151
                		</tbody>
1156
                        </tbody>
1152
                 	</table>
1157
                    </table>
1153
                   		
1158
 
1154
				</div>
1159
                </div>
1155
			</div>
1160
            </div>
1156
		</div>
1161
        </div>
1157
		<div class="card-footer text-right">
1162
        <div class="card-footer text-right">
1158
			<button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
1163
            <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
1159
        	<?php if ($allowAdd) : ?>
1164
            <?php if ($allowAdd) : ?>
1160
       		<button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
1165
                <button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
1161
  			<?php endif; ?>
1166
            <?php endif; ?>
1162
		</div>
1167
        </div>
1163
	</div>
1168
    </div>
1164
	
1169
 
1165
	
1170
 
1166
	<div class="card" id="row-view" style="display: none">
1171
    <div class="card" id="row-view" style="display: none">
1167
		<div class="card-header">
1172
        <div class="card-header">
1168
			<h6 class="card-title">
1173
            <h6 class="card-title">
1169
				<span id="view_title_name"></span> 
1174
                <span id="view_title_name"></span>
1170
                <small class="float-right">LABEL_LAST_DATE: <span id="view_title_last_date"></span></small>
1175
                <small class="float-right">LABEL_LAST_DATE: <span id="view_title_last_date"></span></small>
1171
           	</h6>
1176
            </h6>
1172
		</div>
1177
        </div>
1173
		<div class="card-body">
1178
        <div class="card-body">
1174
			<div class="row invoice-info">
1179
            <div class="row invoice-info">
1175
                <div class="col-sm-6 invoice-col">
1180
                <div class="col-sm-6 invoice-col">
1176
                  <strong>LABEL_VACANCY</strong> 
1181
                    <strong>LABEL_VACANCY</strong>
1177
                  <address>
1182
                    <address>
1178
                    <span id="view_vacancy_name"></span><br>
1183
                        <span id="view_vacancy_name"></span><br>
1179
                    LABEL_LAST_DATE : <span id="view_vacancy_last_date"></span><br>
1184
                        LABEL_LAST_DATE : <span id="view_vacancy_last_date"></span><br>
1180
                    LABEL_JOB_DESCRIPTION : <span id="view_vacancy_job_description"></span><br>
1185
                        LABEL_JOB_DESCRIPTION : <span id="view_vacancy_job_description"></span><br>
1181
                    LABEL_INDUSTRY : <span id="view_vacancy_industry"></span><br>
1186
                        LABEL_INDUSTRY : <span id="view_vacancy_industry"></span><br>
1182
                    LABEL_JOB_CATEGORY : <span id="view_vacancy_job_category"></span>
1187
                        LABEL_JOB_CATEGORY : <span id="view_vacancy_job_category"></span>
1183
            	</address>
1188
                    </address>
1184
                </div>
1189
                </div>
1185
                <!-- /.col -->
1190
                <!-- /.col -->
1186
                <div class="col-sm-3 invoice-col">
1191
                <div class="col-sm-3 invoice-col">
1187
                  <strong>LABEL_CANDIDATE</strong>	
1192
                    <strong>LABEL_CANDIDATE</strong>
1188
                  <address>
1193
                    <address>
1189
                    LABEL_FIRST_NAME : <strong id="view_candidate_first_name"></strong><br>
1194
                        LABEL_FIRST_NAME : <strong id="view_candidate_first_name"></strong><br>
1190
                    LABEL_LAST_NAME : <strong id="view_candidate_last_name"></strong><br>
1195
                        LABEL_LAST_NAME : <strong id="view_candidate_last_name"></strong><br>
1191
                    LABEL_EMAIL : <span id="view_vacancy_email"></span><br>
1196
                        LABEL_EMAIL : <span id="view_vacancy_email"></span><br>
1192
                  </address>
1197
                    </address>
1193
                </div>
1198
                </div>
1194
                <!-- /.col -->
1199
                <!-- /.col -->
1195
                <div class="col-sm-3 invoice-col">
1200
                <div class="col-sm-3 invoice-col">
1196
                	<strong> LABEL_APPLICATION</strong><br>
1201
                    <strong> LABEL_APPLICATION</strong><br>
1197
                  	<address>
1202
                    <address>
1198
                  	LABEL_LEVEL : <span id="view_application_level"></span>
1203
                        LABEL_LEVEL : <span id="view_application_level"></span>
1199
                  	<?php if($allowLevel) : ?>
1204
                        <?php if ($allowLevel) : ?>
1200
                  	<button class="btn btn-default btn-change-level"><i class="fa fa-external-link-alt"></i></button>
1205
                            <button class="btn btn-default btn-change-level"><i class="fa fa-external-link-alt"></i></button>
1201
                  	<?php endif; ?>
1206
                        <?php endif; ?>
1202
                  	<br>
1207
                        <br>
1203
                  	LABEL_STATUS : <span id="view_application_status"></span>
1208
                        LABEL_STATUS : <span id="view_application_status"></span>
1204
                  	<?php if($allowStatus) : ?>
1209
                        <?php if ($allowStatus) : ?>
1205
                  	<button class="btn btn-default btn-change-status"><i class="fa fa-external-link-alt"></i></button>
1210
                            <button class="btn btn-default btn-change-status"><i class="fa fa-external-link-alt"></i></button>
1206
                  	<?php endif; ?>
1211
                        <?php endif; ?>
1207
                  	<br>
1212
                        <br>
1208
                  	LABEL_POINTS : <span id="view_application_points"></span>
1213
                        LABEL_POINTS : <span id="view_application_points"></span>
1209
                  	<?php if($allowComment) : ?>
1214
                        <?php if ($allowComment) : ?>
1210
                  	<button class="btn btn-default btn-change-comment"><i class="fa fa-external-link-alt"></i></button>
1215
                            <button class="btn btn-default btn-change-comment"><i class="fa fa-external-link-alt"></i></button>
1211
                  	<?php endif; ?>
1216
                        <?php endif; ?>
1212
                  	<br>
1217
                        <br>
1213
                   </address>
1218
                    </address>
1214
                </div>
1219
                </div>
1215
                <!-- /.col -->
1220
                <!-- /.col -->
1216
              </div>
1221
            </div>
1217
              <div class="row invoice-info" >
1222
            <div class="row invoice-info">
1218
              	<div class="col-sm-12 invoice-col" >
1223
                <div class="col-sm-12 invoice-col">
1219
              		<strong>LABEL_COMMENT</strong><br/>
1224
                    <strong>LABEL_COMMENT</strong><br />
1220
              		<div id="view_application_comment">
1225
                    <div id="view_application_comment">
1221
              		</div>	
1226
                    </div>
1222
              	</div>
1227
                </div>
Línea 1223... Línea 1228...
1223
              </div>
1228
            </div>
1224
              <!-- /.row -->
1229
            <!-- /.row -->
1225
 
1230
 
1226
              <!-- Table row -->
1231
            <!-- Table row -->
1227
              <div class="row">
1232
            <div class="row">
1228
                <div class="col-12 table-responsive">
1233
                <div class="col-12 table-responsive">
1229
                  <table class="table " id="fileTable">
1234
                    <table class="table " id="fileTable">
1230
                    <thead>
1235
                        <thead>
1231
                    <tr>
1236
                            <tr>
1232
                      <th>LABEL_NAME</th>
1237
                                <th>LABEL_NAME</th>
1233
                      <th>LABEL_FILE</th>
1238
                                <th>LABEL_FILE</th>
1234
                      <th>LABEL_ACTIONS</th>
1239
                                <th>LABEL_ACTIONS</th>
1235
                    </tr>
1240
                            </tr>
1236
                    </thead>
1241
                        </thead>
1237
                    <tbody>
1242
                        <tbody>
1238
                   
1243
 
1239
                    </tbody>
1244
                        </tbody>
1240
                   
1245
 
1241
                    <tfoot>
1246
                        <tfoot>
1242
                    	<tr>
1247
                            <tr>
1243
                    		<td colspan="3" class="text-right">
1248
                                <td colspan="3" class="text-right">
1244
                        	 <?php if($allowFileAdd) : ?>
1249
                                    <?php if ($allowFileAdd) : ?>
1245
                        	<button type="button" class="btn btn-primary btn-add-file"><i class="fa fa-plus"></i> LABEL_ADD </button>
1250
                                        <button type="button" class="btn btn-primary btn-add-file"><i class="fa fa-plus"></i> LABEL_ADD </button>
1246
                        	<?php endif; ?>
1251
                                    <?php endif; ?>
1247
                        	</td>
1252
                                </td>
1248
                        </tr>	
1253
                            </tr>
1249
                    </tfoot>
1254
                        </tfoot>
1250
                    
1255
 
1251
                  </table>
1256
                    </table>
1252
                </div>
1257
                </div>
1253
                <!-- /.col -->
1258
                <!-- /.col -->
1254
              </div>
1259
            </div>
1255
              <!-- /.row -->
1260
            <!-- /.row -->
1256
              
1261
 
1257
              
1262
 
1258
             <!-- Table row -->
1263
            <!-- Table row -->
1259
              <div class="row">
1264
            <div class="row">
1260
                <div class="col-12 table-responsive">
1265
                <div class="col-12 table-responsive">
1261
                  <table class="table " id="interviewTable">
1266
                    <table class="table " id="interviewTable">
1262
                    <thead>
1267
                        <thead>
1263
                    <tr>
1268
                            <tr>
1264
                    	<th>LABEL_TYPE</th>
1269
                                <th>LABEL_TYPE</th>
1265
                      	<th>LABEL_LAST_DATE</th>
1270
                                <th>LABEL_LAST_DATE</th>
1266
                      	<th>LABEL_INTERVIEWED_BY</th>
1271
                                <th>LABEL_INTERVIEWED_BY</th>
1267
                      	<th>LABEL_STATUS</th>
1272
                                <th>LABEL_STATUS</th>
1268
                      	<th>LABEL_ACTIONS</th>
1273
                                <th>LABEL_ACTIONS</th>
1269
                    </tr>
1274
                            </tr>
1270
                    </thead>
1275
                        </thead>
1271
                    <tbody>
1276
                        <tbody>
1272
                   
1277
 
1273
                    </tbody>
1278
                        </tbody>
1274
                   
1279
 
1275
                    <tfoot>
1280
                        <tfoot>
1276
                    	<tr>
1281
                            <tr>
1277
                    		<td colspan="5" class="text-right">
1282
                                <td colspan="5" class="text-right">
1278
                        	 <?php if($allowInterviewAdd) : ?>
1283
                                    <?php if ($allowInterviewAdd) : ?>
1279
                        	<button type="button" class="btn btn-primary  btn-add-interview"><i class="fa fa-plus"></i> LABEL_ADD </button>
1284
                                        <button type="button" class="btn btn-primary  btn-add-interview"><i class="fa fa-plus"></i> LABEL_ADD </button>
1280
                        	<?php endif; ?>
1285
                                    <?php endif; ?>
1281
                        	</td>
1286
                                </td>
1282
                        </tr>	
1287
                            </tr>
1283
                    </tfoot>
1288
                        </tfoot>
1284
                    
1289
 
1285
                  </table>
1290
                    </table>
1286
                </div>
1291
                </div>
1287
                <!-- /.col -->
1292
                <!-- /.col -->
1288
              </div>
1293
            </div>
1289
              <!-- /.row -->
1294
            <!-- /.row -->
1290
		</div>
1295
        </div>
1291
		<div class="card-footer text-right">
1296
        <div class="card-footer text-right">
1292
			<button type="button" class="btn btn-primary btn-close-application"><i class="far fa-time"></i> LABEL_CLOSE </button>
1297
            <button type="button" class="btn btn-primary btn-close-application"><i class="far fa-time"></i> LABEL_CLOSE </button>
1293
		</div>
1298
        </div>
Línea 1294... Línea -...
1294
	</div>
-
 
1295
	
-
 
1296
</div>
-
 
Línea -... Línea 1299...
-
 
1299
    </div>
1297
 
1300
 
-
 
1301
</div>
-
 
1302
 
Línea 1298... Línea 1303...
1298
 
1303
 
1299
    
1304
 
Línea 1315... Línea 1320...
1315
 
1320
 
1316
            <!-- Modal Header -->
1321
            <!-- Modal Header -->
1317
            <div class="modal-header">
1322
            <div class="modal-header">
1318
                <h6>LABEL_ADD_APPLICATION</h6>
1323
                <h6>LABEL_ADD_APPLICATION</h6>
1319
            </div>
-
 
1320
            
-
 
1321
     		<?php
-
 
1322
                $form = $this->formAdd;
-
 
1323
                $form->setAttributes([
-
 
1324
                    'method'    => 'post',
-
 
1325
                    'name'      => 'form-add',
-
 
1326
                    'id'        => 'form-add'
-
 
1327
                ]);
-
 
1328
 
-
 
1329
                $form->prepare();
-
 
1330
                echo $this->form()->openTag($form);
-
 
1331
                
-
 
1332
                $element = $form->get('user_id');
-
 
Línea -... Línea 1324...
-
 
1324
            </div>
-
 
1325
 
-
 
1326
            <?php
-
 
1327
            $form = $this->formAdd;
-
 
1328
            $form->setAttributes([
-
 
1329
                'method'    => 'post',
-
 
1330
                'name'      => 'form-add',
-
 
1331
                'id'        => 'form-add'
-
 
1332
            ]);
-
 
1333
 
-
 
1334
            $form->prepare();
-
 
1335
            echo $this->form()->openTag($form);
-
 
1336
 
-
 
1337
            $element = $form->get('user_id');
1333
                echo $this->formHidden($element);
1338
            echo $this->formHidden($element);
Línea 1334... Línea 1339...
1334
 
1339
 
1335
                ?>
1340
            ?>
1336
 
-
 
1337
            <!-- Modal body -->
-
 
1338
            <div class="modal-body">
-
 
1339
 
-
 
1340
    			<div class="row">
-
 
1341
    				<div class="col-12 mt-3">
-
 
1342
    				<?php
-
 
Línea -... Línea 1341...
-
 
1341
 
-
 
1342
            <!-- Modal body -->
-
 
1343
            <div class="modal-body">
-
 
1344
 
-
 
1345
                <div class="row">
-
 
1346
                    <div class="col-12 mt-3">
-
 
1347
                        <?php
1343
                    $element = $form->get('email');
1348
                        $element = $form->get('email');
1344
                    $element->setOptions(['label' => 'LABEL_EMAIL']);
1349
                        $element->setOptions(['label' => 'LABEL_EMAIL']);
1345
                    $element->setAttributes(['class' => 'form-control']);
1350
                        $element->setAttributes(['class' => 'form-control']);
1346
 
1351
 
1347
                    echo $this->formLabel($element);
1352
                        echo $this->formLabel($element);
1348
                    ?>
1353
                        ?>
1349
    				
1354
 
1350
    				
1355
 
1351
    				<?php if($allowUserByEmail) : ?>
1356
                        <?php if ($allowUserByEmail) : ?>
1352
    				
1357
 
1353
    				<div class="input-group mb-3">
1358
                            <div class="input-group mb-3">
1354
                      <?php echo  $this->formText($element); ?>
1359
                                <?php echo  $this->formText($element); ?>
1355
                      <span class="input-group-text btn-search-email">
1360
                                <span class="input-group-text btn-search-email">
1356
 
1361
 
1357
                      	<i class="fa fa-search" aria-hidden="true"></i></span>
1362
                                    <i class="fa fa-search" aria-hidden="true"></i></span>
1358
            
1363
 
1359
                    </div>
1364
                            </div>
1360
                    
1365
 
1361
     
1366
 
1362
                    <?php 
1367
                        <?php
1363
                    else:
1368
                        else :
1364
                    echo $this->formText($element);
1369
                            echo $this->formText($element);
1365
                    endif; ?>
1370
                        endif; ?>
1366
              
1371
 
1367
                    </div>
1372
                    </div>
1368
                </div>
1373
                </div>
1369
    			<div class="row">
1374
                <div class="row">
1370
    				<div class="col-12 mt-3">
1375
                    <div class="col-12 mt-3">
1371
                    <?php
1376
                        <?php
1372
                    $element = $form->get('first_name');
1377
                        $element = $form->get('first_name');
1373
                    $element->setOptions(['label' => 'LABEL_FIRST_NAME']);
1378
                        $element->setOptions(['label' => 'LABEL_FIRST_NAME']);
1374
                    $element->setAttributes(['class' => 'form-control']);
1379
                        $element->setAttributes(['class' => 'form-control']);
1375
 
1380
 
1376
                    echo $this->formLabel($element);
1381
                        echo $this->formLabel($element);
1377
                    echo $this->formText($element);
1382
                        echo $this->formText($element);
1378
                    ?>
1383
                        ?>
1379
                    </div>
1384
                    </div>
1380
                </div>
1385
                </div>
1381
    			<div class="row">
1386
                <div class="row">
1382
    				<div class="col-12 mt-3">
1387
                    <div class="col-12 mt-3">
Línea 1383... Línea 1388...
1383
                    <?php
1388
                        <?php
1384
                    $element = $form->get('last_name');
1389
                        $element = $form->get('last_name');
1385
                    $element->setOptions(['label' => 'LABEL_LAST_NAME']);
1390
                        $element->setOptions(['label' => 'LABEL_LAST_NAME']);
1386
                    $element->setAttributes(['class' => 'form-control']);
1391
                        $element->setAttributes(['class' => 'form-control']);
1387
 
1392
 
Línea 1388... Línea 1393...
1388
                    echo $this->formLabel($element);
1393
                        echo $this->formLabel($element);
1389
                    echo $this->formText($element);
1394
                        echo $this->formText($element);
1390
                    ?>
1395
                        ?>
1391
                    </div>
1396
                    </div>
1392
                </div>
1397
                </div>
1393
 
1398
 
1394
           
1399
 
1395
            </div>
1400
            </div>
1396
     		<div class="modal-footer text-right">
1401
            <div class="modal-footer text-right">
1397
                    <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
1402
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
Línea 1411... Línea 1416...
1411
            <!-- Modal Header -->
1416
            <!-- Modal Header -->
1412
            <div class="modal-header">
1417
            <div class="modal-header">
1413
                <h6>LABEL_ADD_FILE</h6>
1418
                <h6>LABEL_ADD_FILE</h6>
1414
            </div>
1419
            </div>
Línea 1415... Línea 1420...
1415
 
1420
 
1416
         <?php
1421
            <?php
1417
                $form = $this->formFile;
1422
            $form = $this->formFile;
1418
                $form->setAttributes([
1423
            $form->setAttributes([
1419
                    'method'    => 'post',
1424
                'method'    => 'post',
1420
                    'name'      => 'form-file',
1425
                'name'      => 'form-file',
1421
                    'id'        => 'form-file'
1426
                'id'        => 'form-file'
1422
                ]);
1427
            ]);
1423
 
1428
 
1424
                $form->prepare();
1429
            $form->prepare();
1425
                echo $this->form()->openTag($form);
-
 
Línea -... Línea 1430...
-
 
1430
            echo $this->form()->openTag($form);
1426
                
1431
 
1427
 
1432
 
1428
 
-
 
Línea 1429... Línea -...
1429
                ?>
-
 
1430
            <div class="modal-body">
-
 
1431
       
-
 
1432
 
-
 
1433
                <div class="row">
-
 
1434
    				<div class="col-12 mt-3">
-
 
Línea -... Línea 1433...
-
 
1433
 
-
 
1434
            ?>
-
 
1435
            <div class="modal-body">
-
 
1436
 
-
 
1437
 
-
 
1438
                <div class="row">
-
 
1439
                    <div class="col-12 mt-3">
1435
                    <?php
1440
                        <?php
1436
                    $element = $form->get('name');
1441
                        $element = $form->get('name');
1437
                    $element->setOptions(['label' => 'LABEL_NAME']);
1442
                        $element->setOptions(['label' => 'LABEL_NAME']);
1438
                    $element->setAttributes(['class' => 'form-control']);
1443
                        $element->setAttributes(['class' => 'form-control']);
1439
 
1444
 
1440
                    echo $this->formLabel($element);
1445
                        echo $this->formLabel($element);
1441
                    echo $this->formText($element);
1446
                        echo $this->formText($element);
1442
                    ?>
1447
                        ?>
1443
                    </div>
1448
                    </div>
1444
                </div>
1449
                </div>
1445
           		<div class="row">
1450
                <div class="row">
Línea 1446... Línea 1451...
1446
    				<div class="col-12 mt-3">
1451
                    <div class="col-12 mt-3">
1447
                    <?php
1452
                        <?php
1448
                    $element = $form->get('file');
1453
                        $element = $form->get('file');
1449
                    $element->setOptions(['label' => 'LABEL_FILE']);
1454
                        $element->setOptions(['label' => 'LABEL_FILE']);
1450
                    $element->setAttributes(['class' => 'form-control']);
1455
                        $element->setAttributes(['class' => 'form-control']);
Línea 1451... Línea 1456...
1451
 
1456
 
1452
                    echo $this->formLabel($element);
1457
                        echo $this->formLabel($element);
1453
                    echo $this->formFile($element);
1458
                        echo $this->formFile($element);
1454
                    ?>
1459
                        ?>
1455
                    </div>
1460
                    </div>
1456
                </div>
1461
                </div>
Línea 1457... Línea 1462...
1457
 
1462
 
1458
 
1463
 
1459
            </div>
1464
            </div>
Línea 1476... Línea 1481...
1476
            <!-- Modal Header -->
1481
            <!-- Modal Header -->
1477
            <div class="modal-header">
1482
            <div class="modal-header">
1478
                <h6>LABEL_EVALUATION</h6>
1483
                <h6>LABEL_EVALUATION</h6>
1479
            </div>
1484
            </div>
Línea 1480... Línea 1485...
1480
 
1485
 
1481
    <?php
1486
            <?php
1482
                $form = $this->formComment;
1487
            $form = $this->formComment;
1483
                $form->setAttributes([
1488
            $form->setAttributes([
1484
                    'method'    => 'post',
1489
                'method'    => 'post',
1485
                    'name'      => 'form-comment',
1490
                'name'      => 'form-comment',
1486
                    'id'        => 'form-comment'
1491
                'id'        => 'form-comment'
1487
                ]);
1492
            ]);
1488
 
1493
 
1489
                $form->prepare();
1494
            $form->prepare();
1490
                echo $this->form()->openTag($form);
1495
            echo $this->form()->openTag($form);
Línea 1491... Línea 1496...
1491
                
1496
 
1492
 
1497
 
1493
 
-
 
Línea 1494... Línea -...
1494
                ?>
-
 
1495
            <div class="modal-body">
-
 
1496
            
-
 
1497
 
-
 
1498
               <div class="row">
-
 
1499
    				<div class="col-12 mt-3">
-
 
Línea -... Línea 1498...
-
 
1498
 
-
 
1499
            ?>
-
 
1500
            <div class="modal-body">
-
 
1501
 
-
 
1502
 
-
 
1503
                <div class="row">
-
 
1504
                    <div class="col-12 mt-3">
1500
                    <?php
1505
                        <?php
1501
                    $element = $form->get('points');
1506
                        $element = $form->get('points');
1502
                    $element->setOptions(['label' => 'LABEL_POINTS']);
1507
                        $element->setOptions(['label' => 'LABEL_POINTS']);
1503
                    $element->setAttributes(['class' => 'form-control']);
1508
                        $element->setAttributes(['class' => 'form-control']);
1504
 
1509
 
1505
                    echo $this->formLabel($element);
1510
                        echo $this->formLabel($element);
1506
                    echo $this->formText($element);
1511
                        echo $this->formText($element);
1507
                    ?>
1512
                        ?>
1508
                    </div>
1513
                    </div>
1509
                </div>
1514
                </div>
1510
           		<div class="row">
1515
                <div class="row">
Línea 1511... Línea 1516...
1511
    				<div class="col-12 mt-3">
1516
                    <div class="col-12 mt-3">
1512
                    <?php
1517
                        <?php
1513
                    $element = $form->get('comment');
1518
                        $element = $form->get('comment');
1514
                    $element->setOptions(['label' => 'LABEL_COMMENT']);
1519
                        $element->setOptions(['label' => 'LABEL_COMMENT']);
1515
                    $element->setAttributes(['class' => 'form-control']);
1520
                        $element->setAttributes(['class' => 'form-control']);
Línea 1516... Línea 1521...
1516
 
1521
 
1517
                    echo $this->formLabel($element);
1522
                        echo $this->formLabel($element);
1518
                    echo $this->formTextArea($element);
1523
                        echo $this->formTextArea($element);
1519
                    ?>
1524
                        ?>
1520
                    </div>
1525
                    </div>
1521
                </div>
1526
                </div>
Línea 1522... Línea 1527...
1522
 
1527
 
1523
 
1528
 
1524
            </div>
1529
            </div>
Línea 1542... Línea 1547...
1542
            <!-- Modal Header -->
1547
            <!-- Modal Header -->
1543
            <div class="modal-header">
1548
            <div class="modal-header">
1544
                <h6>LABEL_LEVEL</h6>
1549
                <h6>LABEL_LEVEL</h6>
1545
            </div>
1550
            </div>
Línea 1546... Línea 1551...
1546
 
1551
 
1547
 <?php
1552
            <?php
1548
                $form = $this->formLevel;
1553
            $form = $this->formLevel;
1549
                $form->setAttributes([
1554
            $form->setAttributes([
1550
                    'method'    => 'post',
1555
                'method'    => 'post',
1551
                    'name'      => 'form-level',
1556
                'name'      => 'form-level',
1552
                    'id'        => 'form-level'
1557
                'id'        => 'form-level'
1553
                ]);
1558
            ]);
1554
 
1559
 
1555
                $form->prepare();
1560
            $form->prepare();
1556
                echo $this->form()->openTag($form);
1561
            echo $this->form()->openTag($form);
Línea 1557... Línea 1562...
1557
                
1562
 
1558
 
1563
 
1559
 
1564
 
Línea 1560... Línea 1565...
1560
                ?>
1565
            ?>
1561
            <div class="modal-body">
1566
            <div class="modal-body">
1562
               
1567
 
1563
 
1568
 
1564
                <div class="row">
1569
                <div class="row">
1565
    				<div class="col-12 mt-3">
1570
                    <div class="col-12 mt-3">
Línea 1566... Línea 1571...
1566
                    <?php
1571
                        <?php
1567
                    $element = $form->get('level');
1572
                        $element = $form->get('level');
1568
                    $element->setOptions(['label' => 'LABEL_LEVEL']);
1573
                        $element->setOptions(['label' => 'LABEL_LEVEL']);
1569
                    $element->setAttributes(['class' => 'form-control']);
1574
                        $element->setAttributes(['class' => 'form-control']);
1570
 
1575
 
Línea 1571... Línea 1576...
1571
                    echo $this->formLabel($element);
1576
                        echo $this->formLabel($element);
1572
                    echo $this->formSelect($element);
1577
                        echo $this->formSelect($element);
Línea 1573... Línea 1578...
1573
                    ?>
1578
                        ?>
1574
                    </div>
1579
                    </div>
1575
                </div>
1580
                </div>
1576
 
1581
 
1577
 
1582
 
1578
  
1583
 
1579
            </div>
1584
            </div>
1580
 
1585
 
Línea 1596... Línea 1601...
1596
            <!-- Modal Header -->
1601
            <!-- Modal Header -->
1597
            <div class="modal-header">
1602
            <div class="modal-header">
1598
                <h6>LABEL_STATUS</h6>
1603
                <h6>LABEL_STATUS</h6>
1599
            </div>
1604
            </div>
Línea 1600... Línea 1605...
1600
 
1605
 
1601
			<?php
1606
            <?php
1602
                $form = $this->formStatus;
1607
            $form = $this->formStatus;
1603
                $form->setAttributes([
1608
            $form->setAttributes([
1604
                    'method'    => 'post',
1609
                'method'    => 'post',
1605
                    'name'      => 'form-status',
1610
                'name'      => 'form-status',
1606
                    'id'        => 'form-status'
1611
                'id'        => 'form-status'
1607
                ]);
1612
            ]);
1608
 
1613
 
1609
                $form->prepare();
1614
            $form->prepare();
1610
                echo $this->form()->openTag($form);
-
 
Línea -... Línea 1615...
-
 
1615
            echo $this->form()->openTag($form);
1611
                
1616
 
1612
 
1617
 
1613
 
1618
 
1614
                ?>
1619
            ?>
1615
                
1620
 
Línea 1616... Línea 1621...
1616
            <!-- Modal body -->
1621
            <!-- Modal body -->
1617
            <div class="modal-body">
1622
            <div class="modal-body">
1618
                
1623
 
1619
 
1624
 
1620
                <div class="row">
1625
                <div class="row">
1621
    				<div class="col-12 mt-3">
1626
                    <div class="col-12 mt-3">
Línea 1622... Línea 1627...
1622
                    <?php
1627
                        <?php
1623
                    $element = $form->get('status');
1628
                        $element = $form->get('status');
1624
                    $element->setOptions(['label' => 'LABEL_STATUS']);
1629
                        $element->setOptions(['label' => 'LABEL_STATUS']);
1625
                    $element->setAttributes(['class' => 'form-control']);
1630
                        $element->setAttributes(['class' => 'form-control']);
1626
 
1631
 
Línea 1627... Línea 1632...
1627
                    echo $this->formLabel($element);
1632
                        echo $this->formLabel($element);
Línea 1628... Línea 1633...
1628
                    echo $this->formSelect($element);
1633
                        echo $this->formSelect($element);
1629
                    ?>
1634
                        ?>
1630
                    </div>
1635
                    </div>
1631
                </div>
1636
                </div>
1632
 
1637
 
1633
 
1638
 
1634
            </div>
1639
            </div>
1635
 
1640
 
Línea 1649... Línea 1654...
1649
 
1654
 
1650
            <!-- Modal Header -->
1655
            <!-- Modal Header -->
1651
            <div class="modal-header">
1656
            <div class="modal-header">
1652
                <h6>LABEL_INTERVIEW</h6>
1657
                <h6>LABEL_INTERVIEW</h6>
1653
            </div>
-
 
1654
              
-
 
1655
               <?php
-
 
1656
                $form = $this->formInterview;
-
 
1657
                $form->setAttributes([
-
 
1658
                    'method'    => 'post',
-
 
1659
                    'name'      => 'form-interview',
-
 
1660
                    'id'        => 'form-interview'
-
 
1661
                ]);
-
 
1662
 
-
 
1663
                $form->prepare();
-
 
1664
                echo $this->form()->openTag($form);
-
 
Línea -... Línea 1658...
-
 
1658
            </div>
-
 
1659
 
-
 
1660
            <?php
-
 
1661
            $form = $this->formInterview;
-
 
1662
            $form->setAttributes([
-
 
1663
                'method'    => 'post',
-
 
1664
                'name'      => 'form-interview',
-
 
1665
                'id'        => 'form-interview'
-
 
1666
            ]);
-
 
1667
 
-
 
1668
            $form->prepare();
-
 
1669
            echo $this->form()->openTag($form);
-
 
1670
 
-
 
1671
 
Línea 1665... Línea -...
1665
                
-
 
1666
 
-
 
1667
 
1672
 
1668
                ?>
-
 
1669
                
-
 
1670
            <div class="modal-body">
-
 
1671
 
-
 
1672
         		<div class="row">
-
 
1673
    				<div class="col-12 mt-3">
-
 
1674
                    <?php
-
 
Línea -... Línea 1673...
-
 
1673
            ?>
-
 
1674
 
-
 
1675
            <div class="modal-body">
-
 
1676
 
-
 
1677
                <div class="row">
-
 
1678
                    <div class="col-12 mt-3">
-
 
1679
                        <?php
1675
                    $element = $form->get('user_id');
1680
                        $element = $form->get('user_id');
1676
                    $element->setOptions(['label' => 'LABEL_INTERVIEWED_BY']);
1681
                        $element->setOptions(['label' => 'LABEL_INTERVIEWED_BY']);
1677
                    $element->setAttributes(['class' => 'form-control']);
1682
                        $element->setAttributes(['class' => 'form-control']);
1678
 
1683
 
1679
                    echo $this->formLabel($element);
1684
                        echo $this->formLabel($element);
Línea 1680... Línea 1685...
1680
                    echo $this->formSelect($element);
1685
                        echo $this->formSelect($element);
1681
                    ?>
1686
                        ?>
1682
                    </div>
1687
                    </div>
1683
                </div>
1688
                </div>
1684
 
1689
 
1685
                <div class="row">
1690
                <div class="row">
1686
    				<div class="col-12 mt-3">
1691
                    <div class="col-12 mt-3">
1687
                    <?php
1692
                        <?php
1688
                    $element = $form->get('type');
1693
                        $element = $form->get('type');
1689
                    $element->setOptions(['label' => 'LABEL_TYPE']);
1694
                        $element->setOptions(['label' => 'LABEL_TYPE']);
1690
                    $element->setAttributes(['class' => 'form-control']);
1695
                        $element->setAttributes(['class' => 'form-control']);
1691
 
1696
 
1692
                    echo $this->formLabel($element);
-
 
1693
                    echo $this->formSelect($element);
-
 
1694
                    ?>
-
 
1695
                    </div>
-
 
1696
                </div>
-
 
1697
                 
-
 
1698
                 <div class="row">
-
 
Línea -... Línea 1697...
-
 
1697
                        echo $this->formLabel($element);
-
 
1698
                        echo $this->formSelect($element);
-
 
1699
                        ?>
-
 
1700
                    </div>
-
 
1701
                </div>
-
 
1702
 
-
 
1703
                <div class="row">
1699
    				<div class="col-12 mt-3">
1704
                    <div class="col-12 mt-3">
1700
                    <?php
1705
                        <?php
1701
                    $element = $form->get('last_date');
1706
                        $element = $form->get('last_date');
1702
                    $element->setOptions(['label' => 'LABEL_LAST_DATE']);
1707
                        $element->setOptions(['label' => 'LABEL_LAST_DATE']);
1703
                    $element->setAttributes(['class' => 'form-control']);
1708
                        $element->setAttributes(['class' => 'form-control']);
Línea 1704... Línea 1709...
1704
 
1709
 
Línea 1705... Línea 1710...
1705
                    echo $this->formLabel($element);
1710
                        echo $this->formLabel($element);
1706
                    echo $this->formText($element);
1711
                        echo $this->formText($element);
1707
                    ?>
1712
                        ?>
1708
                    </div>
1713
                    </div>
1709
                </div>
1714
                </div>
1710
 
1715
 
1711
 
1716
 
1712
 
1717
 
Línea 1758... Línea 1763...
1758
            {{if link_delete}}
1763
            {{if link_delete}}
1759
            <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>
1764
            <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>
1760
            {{/if}} 
1765
            {{/if}} 
1761
        </td>
1766
        </td>
1762
    </tr>
1767
    </tr>
1763
</script>
1768
</script>
1764
 
-
 
1765
1769