Files
MASA/app/partials/course/course_list.html

55 lines
2.2 KiB
HTML
Raw Permalink Normal View History

2016-02-29 00:49:18 -04:30
<div class="row clearfix">
2016-04-27 20:34:27 -04:30
<h4>Listado de Materias</h4>
2016-02-29 00:49:18 -04:30
<div class="row clearfix"><div class="col-md-12 column"><br><br></div>
</div>
<div>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th width="10%">
Código
2016-02-29 00:49:18 -04:30
</th>
<th width="20%">
Nombre
2016-02-29 00:49:18 -04:30
</th>
<th width="10%">
Creditos
2016-02-29 00:49:18 -04:30
</th>
<th width="40%" style="text-align: center">
2016-05-20 23:00:34 -04:00
Descripción
2016-02-29 00:49:18 -04:30
</th>
<th width="10%" style="text-align: center">
Secciones
</th>
<th width="10%" style="text-align: center">
Eliminar
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>
<td style="text-align: center">
<span
2016-05-20 23:00:34 -04:00
title="Haga click para listar las secciones de esta materia"
class="glyphicon glyphicon-list"
aria-hidden="true"
ng-click="vm.listarSecciones($index)"
style="cursor:pointer"></span>
</td>
2016-02-29 00:49:18 -04:30
<td style="text-align: center">
<span
2016-05-20 23:00:34 -04:00
title="Haga click para eliminar esta materia"
2016-02-29 00:49:18 -04:30
class="glyphicon glyphicon-remove"
aria-hidden="true"
ng-click="vm.eliminarMateriaModal($index)"
style="cursor:pointer"></span>
</td>
</tr>
</tbody>
</table>
</div>
</div>