Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 3 Rev 187
Línea 7... Línea 7...
7
$roleName = $currentUser->getUserTypeId();
7
$roleName = $currentUser->getUserTypeId();
Línea 8... Línea 8...
8
 
8
 
9
 
9
 
-
 
10
$this->headLink()->appendStylesheet($this->basePath('plugins/nprogress/nprogress.css'));
Línea 10... Línea 11...
10
$this->headLink()->appendStylesheet($this->basePath('plugins/nprogress/nprogress.css'));
11
$this->inlineScript()->appendFile($this->basePath('plugins/nprogress/nprogress.js'));
11
$this->inlineScript()->appendFile($this->basePath('plugins/nprogress/nprogress.js'));
12
$this->inlineScript()->appendFile($this->basePath('plugins/jsrender/jsrender.js'));
Línea 55... Línea 56...
55
            'data'      :  $('#form-filter').serialize(),
56
            'data'      :  $('#form-filter').serialize(),
56
        }).done(function(response) {
57
        }).done(function(response) {
57
            if(response['success']) {
58
            if(response['success']) {
Línea 58... Línea 59...
58
 
59
 
59
                $('#tableStudents tbody').empty();
-
 
60
                $.each(response['data'], function(id, item) {
-
 
61
    
-
 
62
                    var percentaje = 0; 
-
 
63
                    if(item['total_capsules_completed']  > 0 && item['total_capsules'] > 0) {
-
 
64
                        percentaje = parseInt ( ( item['total_capsules_completed'] * 100 ) / item['total_capsules'] ); 
-
 
65
                    }  
-
 
66
 
-
 
67
                    var s = '<tr>'; 
-
 
68
 
-
 
69
 
-
 
70
 
-
 
71
                    s = s + '<td style="width: 32%">'; 
-
 
72
                    s = s + $.trim(item['first_name'] + ' ' + item['last_name']  ) + '<br>'; 
60
                $('#tableStudents tbody').empty();
73
                    s = s + item['email'] ; 
-
 
74
                    s = s + '</td>'; 
-
 
75
 
-
 
76
 
-
 
77
                    s = s + '<td style="width: 10%" class="text-right">' + item['total_capsules'] + '</td>'; 
-
 
78
                    s = s + '<td style="width: 10%" class="text-right">' + item['total_capsules_completed'] + '</td>'; 
-
 
79
                    s = s + '<td style="width: 10%" class="text-right">' + item['total_capsules_incomplete'] + '</td>';   
-
 
80
                    s = s + '<td style="width: 10%" >' + item['first_date'] + '<br>' + item['first_time'] + '</td>'; 
-
 
81
                    s = s + '<td style="width: 10%" >' + item['last_date'] + '<br>' + item['last_time'] + '</td>'; 
-
 
82
                    s = s + '<td style="width: 10%" >'; 
61
                $('#tableStudents tbody').append(
83
                    s = s + '<div class="progress progress-xs progress-striped active">';
-
 
84
                    s = s + '<div class="progress-bar bg-primary" style="width: ' + percentaje + '%"></div>';
-
 
85
                    s = s + '</div>';
-
 
86
                    s = s + '</td>';
-
 
Línea 87... Línea -...
87
                    s = s + '<td style="width: 8%"  class="text-right">' + percentaje + '%</td>'; 
-
 
88
 
-
 
89
                  
-
 
90
 
-
 
91
                    s = s + '</tr>'; 
-
 
92
                    $('#tableStudents tbody').append(s);
-
 
93
            
62
                    $( "#progressRowTemplate" ).render( response['data'] )
Línea 94... Línea 63...
94
 
63
 
95
                }); 
64
                );
96
    
65
    
Línea 285... Línea 254...
285
				<div class="card">
254
				<div class="card">
286
                    <!-- /.card-header -->
255
                    <!-- /.card-header -->
287
              		<div class="card-body p-0">
256
              		<div class="card-body p-0">
288
                		<table class="table table-responsive" id="tableStudents" >
257
                		<table class="table table-responsive" id="tableStudents" >
289
                  			<thead>
258
                  			<thead>
290
                  				<tr>
-
 
291
          
-
 
292
                      				<th style="width: 32%">&nbsp;</th>
-
 
293
                      				<th style="width: 30%" colspan="3" class="text-center">LABEL_CAPSULES</th>	
-
 
294
       								<th style="width: 20%" colspan="2" class="text-center">LABEL_DATE</th>
-
 
295
                      				<th style="width: 10%">&nbsp;</th>
-
 
296
                      				<th style="width: 8%">&nbsp;</th>
-
 
297
                    			</tr>
-
 
298
                    			<tr>
259
                    			<tr>
299
          
-
 
300
                      				<th style="width: 32%">LABEL_REPORTS_STUDENT</th>
260
                      				<th style="width: 40%"> LABEL_REPORTS_STUDENT</th>
301
                      				<th style="width: 10%" class="text-right">LABEL_REPORTS_CAPSULES_TOTAL</th>	
-
 
302
                      				<th style="width: 10%" class="text-right">LABEL_REPORTS_CAPSULES_COMPLETED</th>
-
 
303
                      				<th style="width: 10%" class="text-right">LABEL_REPORTS_CAPSULES_INCOMPLETED</th>
-
 
304
                      				<th style="width: 10%">LABEL_REPORTS_FIRST_DATE</th>
261
									<th style="width: 20%">LABEL_CAPSULES</th>	
305
                      				<th style="width: 10%">LABEL_REPORTS_LAST_DATE</th>
262
       								<th style="width: 20%">LABEL_DATE</th>
306
                      				<th style="width: 10%">LABEL_REPORTS_PROGRESS</th>
263
                      				<th style="width: 12%">LABEL_REPORTS_PROGRESS</th>
307
                      				<th style="width: 8%" class="text-right">%</th>
264
                      				<th style="width: 8%" class="text-right">%</th>
308
                    			</tr>
265
                    			</tr>
309
                  			</thead>
266
                  			</thead>
310
                  			<tbody>
267
                  			<tbody>
Línea 320... Línea 277...
320
        </div>          
277
        </div>          
321
 	</div>
278
 	</div>
322
</section> 	
279
</section> 	
Línea -... Línea 280...
-
 
280
 
-
 
281
 
-
 
282
<script id="progressRowTemplate" type="text/x-jsrender">
-
 
283
    <tr>
-
 
284
        <td style="width: 40%">
-
 
285
            {{>first_name}} {{>last_name}}
-
 
286
            <br>
-
 
287
            {{>email}}
-
 
288
        </td>
-
 
289
        <td style="width: 20%">
-
 
290
            LABEL_REPORTS_CAPSULES_TOTAL : {{>total_capsules}}
-
 
291
            <br>
-
 
292
            LABEL_REPORTS_CAPSULES_COMPLETED : {{>total_capsules_completed}}
-
 
293
            <br>
-
 
294
            LABEL_REPORTS_CAPSULES_INCOMPLETED : {{>total_capsules_incomplete}}
-
 
295
            
-
 
296
        </td>
-
 
297
        <td style="width: 20%">
-
 
298
            LABEL_REPORTS_FIRST_DATE 
-
 
299
            <br> 
-
 
300
            {{>first_date}} {{>first_time}}
-
 
301
            <br>
-
 
302
            LABEL_REPORTS_LAST_DATE
-
 
303
            <br> 
-
 
304
            {{>last_date}} {{>last_time}}
-
 
305
        </td>
-
 
306
        <td style="width: 12%">
-
 
307
            <div class="progress progress-xs progress-striped active">
-
 
308
                <div class="progress-bar bg-primary" style="width: {{>total_capsules_percentaje}}%"></div>
-
 
309
            </div>
-
 
310
        </td>
-
 
311
        <td style="width: 8%" class="text-right">{{>total_capsules_percentaje}}</td>
-
 
312
    </tr> 
-
 
313
</script>