2016-02-29 00:49:18 -04:30
|
|
|
<div class="row clearfix">
|
2016-04-27 20:34:27 -04:30
|
|
|
<h4>Reportes por Materia</h4>
|
2016-04-11 00:05:59 -04:30
|
|
|
<br>
|
|
|
|
|
</br>
|
2016-02-29 00:49:18 -04:30
|
|
|
<div>
|
|
|
|
|
<table class="table table-bordered table-striped">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
2016-04-11 00:05:59 -04:30
|
|
|
<th width="10%" style="text-align: center">
|
2016-03-27 23:24:28 -04:30
|
|
|
Código
|
2016-02-29 00:49:18 -04:30
|
|
|
</th>
|
2016-04-11 00:05:59 -04:30
|
|
|
<th width="20%" style="text-align: center">
|
2016-03-27 23:24:28 -04:30
|
|
|
Nombre
|
2016-02-29 00:49:18 -04:30
|
|
|
</th>
|
2016-04-11 00:05:59 -04:30
|
|
|
<th width="5%" style="text-align: center">
|
2016-03-27 23:24:28 -04:30
|
|
|
Creditos
|
2016-02-29 00:49:18 -04:30
|
|
|
</th>
|
2016-04-27 20:34:27 -04:30
|
|
|
<th width="35%" style="text-align: center">
|
2016-03-27 23:24:28 -04:30
|
|
|
Descripción
|
2016-02-29 00:49:18 -04:30
|
|
|
</th>
|
2016-04-27 20:34:27 -04:30
|
|
|
<th width="20%" style="text-align: center">
|
|
|
|
|
Estadisticas de la Materia
|
2016-03-27 23:24:28 -04:30
|
|
|
</th>
|
|
|
|
|
<th width="10%" style="text-align: center">
|
2016-04-11 00:05:59 -04:30
|
|
|
Secciones
|
2016-02-29 00:49:18 -04:30
|
|
|
</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
2016-03-27 23:24:28 -04:30
|
|
|
<tr ng-repeat="course in vm.course">
|
2016-03-05 14:53:20 -04:30
|
|
|
<td style="vertical-align:middle">{{ course.code }}</td>
|
|
|
|
|
<td style="vertical-align:middle">{{ course.name }}</td>
|
|
|
|
|
<td style="vertical-align:middle">{{ course.credits }}</td>
|
|
|
|
|
<td style="vertical-align:middle">{{ course.description }}</td>
|
2016-04-11 00:05:59 -04:30
|
|
|
<td style="text-align: center">
|
2016-05-20 23:00:34 -04:00
|
|
|
<span title="Haga click para ver los reportes de esta materia"
|
2016-04-11 00:05:59 -04:30
|
|
|
class="glyphicon glyphicon-list-alt"
|
2016-03-27 23:24:28 -04:30
|
|
|
aria-hidden="true"
|
2016-04-11 00:05:59 -04:30
|
|
|
ng-click="vm.courseReports($index)"
|
2016-03-27 23:24:28 -04:30
|
|
|
style="cursor:pointer"></span>
|
2016-04-11 00:05:59 -04:30
|
|
|
</td>
|
2016-02-29 00:49:18 -04:30
|
|
|
<td style="text-align: center">
|
2016-05-20 23:00:34 -04:00
|
|
|
<span title="Haga click para ver el listado de las secciones de esta materia"
|
2016-04-11 00:05:59 -04:30
|
|
|
class="glyphicon glyphicon-list"
|
2016-02-29 00:49:18 -04:30
|
|
|
aria-hidden="true"
|
2016-04-11 00:05:59 -04:30
|
|
|
ng-click="vm.listSections($index)"
|
2016-02-29 00:49:18 -04:30
|
|
|
style="cursor:pointer"></span>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|