Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16891 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 16891 Rev 16910
Línea 142... Línea 142...
142
});
142
});
143
JS;
143
JS;
144
$this->inlineScript()->captureEnd();
144
$this->inlineScript()->captureEnd();
145
?>
145
?>
Línea 146... Línea -...
146
  
-
 
147
<!-- Content Header (Page header) -->
-
 
148
<section class="content-header">
146
  
149
	<div class="container-fluid">
147
<div class="container">
150
    	<div class="row mb-2">
148
	<div class="card" id="">
151
        	<div class="col-sm-12">
149
	 	<div class="card-header">
152
            	<h1>LABEL_PROGRESS</h1>
150
	 		<h6 class="card-title">LABEL_PROGRESS</h6>
153
			</div>
-
 
154
		</div>
-
 
155
	</div><!-- /.container-fluid -->
-
 
156
</section>
-
 
157
 
-
 
158
<section class="content">
-
 
159
	<div class="container-fluid">
151
	 	</div>
160
		<div class="row">
-
 
161
			<div class="col-12 mt-3">
-
 
162
				<div class="card card-primary collapsed-card">
-
 
163
              		<div class="card-header">
-
 
164
                		<h3 class="card-title">LABEL_FILTERS</h3>
152
	 	<div class="card-body">
165
 
-
 
166
                		<div class="card-tools">
-
 
167
                  			<button type="button" class="btn btn-tool" data-card-widget="collapse"><i class="fa fa-filter"></i></button>
-
 
168
                		</div>
-
 
169
                        <!-- /.card-tools -->
-
 
170
              		</div>
-
 
171
                    <!-- /.card-header -->
-
 
172
              		<div class="card-body">
153
	 	
173
                		<form name="form-filter" id="form-filter" action="<?php echo $routeReports ?>">
154
	 	<form name="form-filter" id="form-filter" action="<?php echo $routeReports ?>">
174
                		<?php 
155
                		<?php 
175
                    $fields = [ 
156
                    $fields = [ 
176
                        [
157
                        [
177
                            'label' => 'LABEL_COMPANIES',
158
                            'label' => 'LABEL_COMPANIES',
Línea 216... Línea 197...
216
                        $column++;
197
                        $column++;
Línea 217... Línea 198...
217
                    
198
                    
Línea 218... Línea 199...
218
                    ?>		
199
                    ?>		
219
                    
-
 
-
 
200
                    
220
                    			
201
                    			
221
                             <div class="col-md-6 col-sm-12">
202
                 	<div class="col-md-6 mt-3">
222
    					<div class="form-group">
203
    				
223
        					<?php 
204
        					<?php 
Línea 224... Línea 205...
224
                            $element = $form->get( $field['name'] );
205
                            $element = $form->get( $field['name'] );
225
                            $element->setOptions(['label' => $field['label'] ]);
206
                            $element->setOptions(['label' => $field['label'] ]);
226
                            $element->setAttributes(['class' => 'form-control']); 
207
                            $element->setAttributes(['class' => 'form-control']); 
227
                                            
208
                                            
228
                            echo $this->formLabel($element);
209
                            echo $this->formLabel($element);
229
                            echo $this->formSelect($element);
210
                            echo $this->formSelect($element);
230
                            ?>
211
                            ?>
231
						</div>
212
			
232
						</div>
213
						</div>
Línea 240... Línea 221...
240
						<?php if($column) {
221
						<?php if($column) {
241
						    echo '</div>';
222
						    echo '</div>';
242
						} 
223
						} 
243
						?>
224
						?>
244
                		</form>
225
                		</form>
245
              		</div>
-
 
246
                <!-- /.card-body -->
-
 
247
            	</div>
-
 
248
			</div>
-
 
249
		</div>
226
	 	
250
	
227
	 	
251
    	<div class="row">
228
	 		<div class="row">
252
        	<div class="col-12 mt-3">
229
	 	         <div class="col-12 mt-3">
253
				
230
	 	         
254
				<div class="card">
-
 
255
                    <!-- /.card-header -->
-
 
256
              		<div class="card-body p-0">
-
 
257
                		<table class="table table-responsive" id="tableStudents" >
231
	 	              		<table class="table table-responsive" id="tableStudents" >
258
                  			<thead>
232
                  			<thead>
259
                    			<tr>
233
                    			<tr>
260
                      				<th style="width: 40%"> LABEL_REPORTS_STUDENT</th>
234
                      				<th style="width: 40%"> LABEL_REPORTS_STUDENT</th>
261
									<th style="width: 20%">LABEL_CAPSULES</th>	
235
									<th style="width: 20%">LABEL_CAPSULES</th>	
262
       								<th style="width: 20%">LABEL_DATE</th>
236
       								<th style="width: 20%">LABEL_DATE</th>
Línea 266... Línea 240...
266
                  			</thead>
240
                  			</thead>
267
                  			<tbody>
241
                  			<tbody>
Línea 268... Línea 242...
268
                   
242
                   
269
                 			</tbody>
243
                 			</tbody>
270
                		</table>
-
 
271
              		</div>
-
 
272
             		 <!-- /.card-body -->
-
 
273
            	</div>
244
                		</table>
274
          		
-
 
275
          		
245
	 	         
276
           	</div>     
246
	 	         </div>
277
        </div>          
247
	 	     </div>
-
 
248
	 	</div>
-
 
249
 
278
 	</div>
250
	</div>
-
 
251
</div>
-
 
252
  
-
 
253
  
Línea 279... Línea 254...
279
</section> 	
254
 
280
 
255
 
281
 
256