Files
MASA/app/partials/report/course_report.html
2016-04-11 00:05:59 -04:30

53 lines
2.1 KiB
HTML

<div class="row clearfix">
<h4>Reportes de Materias</h4>
<br>
</br>
<div>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th width="10%" style="text-align: center">
Código
</th>
<th width="20%" style="text-align: center">
Nombre
</th>
<th width="5%" style="text-align: center">
Creditos
</th>
<th width="40%" style="text-align: center">
Descripción
</th>
<th width="15%" style="text-align: center">
Reportes de Materia
</th>
<th width="10%" style="text-align: center">
Secciones
</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="course in vm.course">
<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>
<td style="text-align: center">
<span
class="glyphicon glyphicon-list-alt"
aria-hidden="true"
ng-click="vm.courseReports($index)"
style="cursor:pointer"></span>
</td>
<td style="text-align: center">
<span
class="glyphicon glyphicon-list"
aria-hidden="true"
ng-click="vm.listSections($index)"
style="cursor:pointer"></span>
</td>
</tr>
</tbody>
</table>
</div>
</div>