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 19... Línea 19...
19
 
19
 
20
$this->headStyle()->captureStart();
20
$this->headStyle()->captureStart();
Línea 21... Línea 21...
21
echo <<<CSS
21
echo <<<CSS
22
 
22
 
23
 
23
 
24
#tableStudents {
24
#gridTable {
25
    display: flex;
25
    display: flex;
Línea 26... Línea 26...
26
    flex-flow: column;
26
    flex-flow: column;
27
    width: 100%;
27
    width: 100%;
28
}
28
}
Línea 29... Línea 29...
29
 
29
 
30
#tableStudents thead {
30
#gridTable thead {
31
    flex: 0 0 auto;
31
    flex: 0 0 auto;
32
}
32
}
33
 
33
 
34
#tableStudents tbody {
34
#gridTable tbody {
Línea 35... Línea 35...
35
    flex: 1 1 auto;
35
    flex: 1 1 auto;
36
    display: block;
36
    display: block;
37
    overflow-y: auto;
37
    overflow-y: auto;
38
    overflow-x: hidden;
38
    overflow-x: hidden;
39
}
39
}
40
 
40
 
Línea 261... Línea 261...
261
					</div>            
261
					</div>            
262
					<div class="card-body">
262
					<div class="card-body">
263
        	    		<table id="gridTable" class="table   table-hover">
263
        	    		<table id="gridTable" class="table   table-hover">
264
                      		<thead>
264
                      		<thead>
265
        						<tr>
265
        						<tr>
266
									<th style="width: 12%">LABEL_FIRST_NAME</th>
266
									<th >LABEL_FIRST_NAME</th>
267
									<th style="width: 12%">LABEL_LAST_NAME</th>
267
									<th>LABEL_LAST_NAME</th>
268
									<th style="width: 16%">LABEL_EMAIL</th>
268
									<th>LABEL_EMAIL</th>
269
       								<th style="width: 20%">LABEL_DATE</th>
-
 
270
                      				<th style="width: 20%">LABEL_REPORTS_PROGRESS</th>
269
                      				<th >LABEL_REPORTS_PROGRESS</th>
Línea 271... Línea 270...
271
 
270
 
272
                                </tr>
271
                                </tr>
273
                       		</thead>
272
                       		</thead>
274
                         	<tbody>
273
                         	<tbody>
Línea 284... Línea 283...
284
 
283
 
285
 
284
 
286
 
285
 
287
<script id="progressRowTemplate" type="text/x-jsrender">
286
<script id="progressRowTemplate" type="text/x-jsrender">
288
    <tr>
287
    <tr>
289
        <td style="width: 12%">
288
        <td>
290
            {{>first_name}}
289
            {{>first_name}}
291
        </td>
290
        </td>
292
        <td style="width: 12%">
291
        <td>
293
             {{>last_name}}
292
             {{>last_name}}
294
        </td>
293
        </td>
Línea 295... Línea -...
295
        <td style="width: 16%">
-
 
296
            {{>email}}
-
 
297
        </td>
-
 
298
 
-
 
299
        <td style="width: 20%">
-
 
300
            LABEL_REPORTS_FIRST_DATE 
-
 
301
            <br> 
-
 
302
            {{>added_on}}
-
 
303
            <br><br>
294
        <td>
304
            LABEL_REPORTS_LAST_DATE
-
 
Línea 305... Línea 295...
305
            <br> 
295
            {{>email}}
306
            {{>updated_on}}
296
        </td>
307
        </td>
297
 
308
        <td style="width: 20%">
298
        <td>
309
 
299
 
310
 
300
 
Línea 311... Línea 301...
311
            <div class="progress progress-xs progress-striped active" style="height: 15px">
301
            <div class="progress progress-xs progress-striped active" style="height: 15px">
-
 
302
                <div class="progress-bar {{if completed == '1' }} bg-success {{ else }} bg-primary {{/if}}" style="width: {{>progress}}%">
-
 
303
{{>progress}}  %
-
 
304
                </div>
-
 
305
            </div>
-
 
306
        </td>
-
 
307
 
-
 
308
    </tr> 
-
 
309
    <tr>
-
 
310
 
-
 
311
                    <td class="text-right">LABEL_REPORTS_TOTAL_SLIDES</td>
-
 
312
                    <td class="text-right">LABEL_REPORTS_VIEW_SLIDES</td>
-
 
313
                    <td>LABEL_REPORTS_FIRST_DATE</td>
-
 
314
                    <td>LABEL_REPORTS_LAST_DATE</td>
-
 
315
                </tr>
-
 
316
 
-
 
317
 
-
 
318
                <tr>
-
 
319
                    <td class="text-right">{{>total_slides}}</td>
-
 
320
                    <td class="text-right">{{>view_slides}}</td>
-
 
321
                    <td>{{>added_on}}</td>
312
                <div class="progress-bar {{if completed == '1' }} bg-success {{ else }} bg-primary {{/if}}" style="width: {{>progress}}%">
322
                    <td>{{>updated_on}}</td>