Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 15389 Rev 15390
Línea 18... Línea 18...
18
 
18
 
19
$this->headStyle()->captureStart();
19
$this->headStyle()->captureStart();
Línea 20... Línea 20...
20
echo <<<CSS
20
echo <<<CSS
21
 
21
 
22
 
22
 
23
#tableStudents {
23
#gridTable {
24
    display: flex;
24
    display: flex;
Línea 25... Línea 25...
25
    flex-flow: column;
25
    flex-flow: column;
26
    width: 100%;
26
    width: 100%;
27
}
27
}
Línea 28... Línea 28...
28
 
28
 
29
#tableStudents thead {
29
#gridTable thead {
30
    flex: 0 0 auto;
30
    flex: 0 0 auto;
31
}
31
}
32
 
32
 
33
#tableStudents tbody {
33
#gridTable tbody {
Línea 34... Línea 34...
34
    flex: 1 1 auto;
34
    flex: 1 1 auto;
35
    display: block;
35
    display: block;
36
    overflow-y: auto;
36
    overflow-y: auto;
37
    overflow-x: hidden;
37
    overflow-x: hidden;
38
}
38
}
39
 
39
 
Línea 216... Línea 216...
216
					</div>            
216
					</div>            
217
					<div class="card-body">
217
					<div class="card-body">
218
        	    		<table id="gridTable" class="table   table-hover">
218
        	    		<table id="gridTable" class="table   table-hover">
219
                      		<thead>
219
                      		<thead>
220
        						<tr>
220
        						<tr>
221
									<th style="width: 12%">LABEL_FIRST_NAME</th>
221
									<th>LABEL_FIRST_NAME</th>
222
									<th style="width: 12%">LABEL_LAST_NAME</th>
222
									<th>LABEL_LAST_NAME</th>
223
									<th style="width: 16%">LABEL_EMAIL</th>
223
									<th colspan= "2">LABEL_EMAIL</th>
224
       								<th style="width: 20%">LABEL_DATE</th>
-
 
225
                      				<th style="width: 20%">LABEL_REPORTS_PROGRESS</th>
224
                      				<th colspan= "2">LABEL_REPORTS_PROGRESS</th>
Línea 226... Línea 225...
226
 
225
 
227
                                </tr>
226
                                </tr>
228
                       		</thead>
227
                       		</thead>
229
                         	<tbody>
228
                         	<tbody>
Línea 239... Línea 238...
239
 
238
 
240
 
239
 
241
 
240
 
242
<script id="progressRowTemplate" type="text/x-jsrender">
241
<script id="progressRowTemplate" type="text/x-jsrender">
243
    <tr>
242
    <tr>
244
        <td style="width: 12%">
243
        <td>
245
            {{>first_name}}
244
            {{>first_name}}
246
        </td>
245
        </td>
247
        <td style="width: 12%">
246
        <td>
248
             {{>last_name}}
247
             {{>last_name}}
249
        </td>
248
        </td>
Línea 250... Línea -...
250
        <td style="width: 16%">
-
 
251
            {{>email}}
-
 
252
        </td>
-
 
253
 
-
 
254
        <td style="width: 20%">
-
 
255
            LABEL_REPORTS_FIRST_DATE 
-
 
256
            <br> 
-
 
257
            {{>added_on}}
-
 
258
            <br><br>
249
        <td colspan= "2">
259
            LABEL_REPORTS_LAST_DATE
250
            {{>email}}
Línea 260... Línea 251...
260
            <br> 
251
        </td>
261
            {{>updated_on}}
252
 
262
        </td>
253
 
263
        <td style="width: 20%">
254
        <td colspan= "2">
264
 
255
 
265
 
256
 
Línea 266... Línea 257...
266
            <div class="progress progress-xs progress-striped active" style="height: 15px">
257
            <div class="progress progress-xs progress-striped active" style="height: 15px">
-
 
258
                <div class="progress-bar {{if completed == '1' }} bg-success {{ else }} bg-primary {{/if}}" style="width: {{>progress}}%">
-
 
259
{{>progress}}  %
-
 
260
                </div>
-
 
261
            </div>
-
 
262
        </td>
-
 
263
 
-
 
264
    </tr> 
-
 
265
    <tr>
-
 
266
 
-
 
267
                    <td class="text-right">LABEL_TOTAL_ASIGNED</td>
-
 
268
                    <td class="text-right">LABEL_TOTAL_COMPLETED</td>
-
 
269
                    
-
 
270
                    <td class="text-right">LABEL_TOTAL_STARTED</td>
-
 
271
                    <td class="text-right">LABEL_TOTAL_WITHOUT_STARTING</td>
-
 
272
                    <td>LABEL_REPORTS_FIRST_DATE</td>
-
 
273
                    <td>LABEL_REPORTS_LAST_DATE</td>
-
 
274
                </tr>
-
 
275
 
-
 
276
 
-
 
277
                <tr>
-
 
278
                    <td class="text-right">{{>total_capsules}}</td>
-
 
279
                    <td class="text-right">{{>completed_capsules}}</td>
-
 
280
                    <td class="text-right">{{>started_capsules}}</td>
-
 
281
                    <td class="text-right">{{>pending_capsules}}</td>
-
 
282
                    <td>{{>added_on}}</td>
267
                <div class="progress-bar {{if completed == '1' }} bg-success {{ else }} bg-primary {{/if}}" style="width: {{>progress}}%">
283
                    <td>{{>updated_on}}</td>