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%">
|
2016-03-27 23:24:28 -04:30
|
|
|
Código
|
2016-02-29 00:49:18 -04:30
|
|
|
</th>
|
|
|
|
|
<th width="20%">
|
2016-03-27 23:24:28 -04:30
|
|
|
Nombre
|
2016-02-29 00:49:18 -04:30
|
|
|
</th>
|
|
|
|
|
<th width="10%">
|
2016-03-27 23:24:28 -04:30
|
|
|
Creditos
|
2016-02-29 00:49:18 -04:30
|
|
|
</th>
|
2016-03-27 23:24:28 -04:30
|
|
|
<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">
|
2016-03-27 23:24:28 -04:30
|
|
|
Secciones
|
|
|
|
|
</th>
|
|
|
|
|
<th width="10%" style="text-align: center">
|
|
|
|
|
Eliminar
|
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-03-27 23:24:28 -04:30
|
|
|
<td style="text-align: center">
|
|
|
|
|
<span
|
2016-05-20 23:00:34 -04:00
|
|
|
title="Haga click para listar las secciones de esta materia"
|
2016-03-27 23:24:28 -04:30
|
|
|
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>
|