Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16891 Rev 16910
Línea 161... Línea 161...
161
        
161
        
162
});
162
});
163
JS;
163
JS;
164
$this->inlineScript()->captureEnd();
164
$this->inlineScript()->captureEnd();
165
?>
165
?>
166
  
-
 
167
<!-- Content Header (Page header) -->
-
 
168
<section class="content-header">
166
 
169
	<div class="container-fluid">
167
<div class="container">
170
    	<div class="row mb-2">
168
	<div class="card" id="">
171
        	<div class="col-sm-12">
169
	 	<div class="card-header">
172
            	<h1>LABEL_DEVICES_AND_ACCESS</h1>
170
	 		<h6 class="card-title">LABEL_DEVICES_AND_ACCESS</h6>
173
			</div>
-
 
174
		</div>
-
 
175
	</div><!-- /.container-fluid -->
-
 
176
</section>
-
 
177
 
-
 
178
<section class="content">
-
 
179
	<div class="container-fluid">
171
	 	</div>
180
		<div class="row">
-
 
181
			<div class="col-12 mt-3">
-
 
182
				<div class="card card-primary collapsed-card">
-
 
183
              		<div class="card-header">
-
 
184
                		<h3 class="card-title"><button type="button" data-card-widget="collapse"><i class="fa fa-filter"></i>  LABEL_FILTERS</button></h3>
172
	 	<div class="card-body">
185
 
-
 
186
                        <!-- /.card-tools -->
-
 
187
              		</div>
-
 
188
                    <!-- /.card-header -->
-
 
189
              		<div class="card-body">
173
	 	
190
                		<form name="form-filter" id="form-filter" action="<?php echo $routeReports ?>">
174
	 	<form name="form-filter" id="form-filter" action="<?php echo $routeReports ?>">
191
                		<?php 
175
                		<?php 
192
                    $fields = [ 
176
                    $fields = [ 
193
                        [
177
                        [
194
                            'label' => 'LABEL_COMPANIES',
178
                            'label' => 'LABEL_COMPANIES',
Línea 233... Línea 217...
233
                        $column++;
217
                        $column++;
Línea 234... Línea 218...
234
                    
218
                    
Línea 235... Línea 219...
235
                    ?>		
219
                    ?>		
236
                    
-
 
-
 
220
                    
237
                    			
221
                    			
238
                             <div class="col-md-6 col-sm-12">
222
                        	<div class="col-6 mt-3">
239
    					<div class="form-group">
223
    				
240
        					<?php 
224
        					<?php 
Línea 241... Línea 225...
241
                            $element = $form->get( $field['name'] );
225
                            $element = $form->get( $field['name'] );
242
                            $element->setOptions(['label' => $field['label'] ]);
226
                            $element->setOptions(['label' => $field['label'] ]);
243
                            $element->setAttributes(['class' => 'form-control']); 
227
                            $element->setAttributes(['class' => 'form-control']); 
244
                                            
228
                                            
245
                            echo $this->formLabel($element);
229
                            echo $this->formLabel($element);
246
                            echo $this->formSelect($element);
230
                            echo $this->formSelect($element);
247
                            ?>
231
                            ?>
248
						</div>
232
				
249
						</div>
233
						</div>
Línea 256... Línea 240...
256
					<?php endforeach; ?>	
240
					<?php endforeach; ?>	
257
						<?php if($column) {
241
						<?php if($column) {
258
						    echo '</div>';
242
						    echo '</div>';
259
						} 
243
						} 
260
						?>
244
						?>
261
                		</form>
-
 
262
              		</div>
-
 
263
                <!-- /.card-body -->
-
 
264
            	</div>
-
 
265
			</div>
-
 
266
		</div>
-
 
267
	
245
	 	
268
    	<div class="row">
-
 
269
        	<div class="col-12 mt-3">
-
 
270
				
246
	 	
271
				<div class="card">
247
	 		<div class="row">
272
					<div class="card-header">
248
	 	         <div class="col-12 mt-3">
273
 
-
 
274
 
-
 
275
                            <div
-
 
276
                                class="col-md-12 col-sm-12"
-
 
277
                            >
-
 
278
                                <div style="float:right;">
-
 
279
                                    <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH  </button>
-
 
280
                                    <?php if($allowDownload) :  ?>
-
 
281
                                    
-
 
282
                					<button type="button" class="btn btn-info btn-download"><i class="fa fa-download"></i> LABEL_DOWNLOAD  </button>
-
 
283
                					<?php endif;?>
-
 
284
                                </div>
-
 
285
                            </div>
-
 
286
 
249
	 	         
287
					</div>           
-
 
288
              		<div class="card-body p-0">
-
 
289
                		<table class="table table-responsive" id="tableDevices" >
250
	 	         <table class="table table-responsive" id="tableDevices" >
290
                  			<thead>
251
                  			<thead>
291
                    			<tr>
252
                    			<tr>
Línea 292... Línea 253...
292
          
253
          
293
                      				<th>LABEL_FIRST_NAME</th>
254
                      				<th>LABEL_FIRST_NAME</th>
Línea 299... Línea 260...
299
                  			</thead>
260
                  			</thead>
300
                  			<tbody>
261
                  			<tbody>
Línea 301... Línea 262...
301
                   
262
                   
302
                 			</tbody>
263
                 			</tbody>
-
 
264
                		</table>
303
                		</table>
265
	 	         
304
              		</div>
266
	 	         </div>
305
             		 <!-- /.card-body -->
267
	 	     </div>
306
            	</div>
-
 
-
 
268
	 	</div>
-
 
269
	 	<div class="card-footer text-right">
-
 
270
                <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH  </button>
307
          		
271
                                    <?php if($allowDownload) :  ?>
-
 
272
                                    
308
          		
273
                					<button type="button" class="btn btn-info btn-download"><i class="fa fa-download"></i> LABEL_DOWNLOAD  </button>
309
           	</div>     
274
                					<?php endif;?>
310
        </div>          
275
	 	</div>
311
 	</div>
276
	</div>
-
 
277
</div>
-
 
278
 
Línea 312... Línea 279...
312
</section> 	
279
 
313
 
280
 
314
 
281