Files
MASA/app/partials/report/course_report.html

53 lines
2.1 KiB
HTML
Raw Normal View History

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">
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">
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">
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">
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
</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>
<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">
<span
2016-04-11 00:05:59 -04:30
class="glyphicon glyphicon-list-alt"
aria-hidden="true"
2016-04-11 00:05:59 -04:30
ng-click="vm.courseReports($index)"
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">
<span
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>