Files
MASA/app/partials/professor/professor_list.html
2016-06-07 22:46:09 -04:00

49 lines
1.8 KiB
HTML

<div class="row clearfix">
<h4>Listado de Profesores</h4>
<br>
<div>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th width="20%" style="text-align: center">
Cedula
</th>
<th width="20%" style="text-align: center">
Nombre
</th>
<th width="20%" style="text-align: center">
Apellido
</th>
<th width="20%" style="text-align: center">
Modificar
</th>
<th width="20%" style="text-align: center">
Borrar
</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="profesor in vm.listaProfesor">
<td style="vertical-align:middle">{{ profesor.id }}</td>
<td style="vertical-align:middle">{{ profesor.name }}</td>
<td style="vertical-align:middle">{{ profesor.lastname }}</td>
<td style="text-align: center">
<span title="Haga click para Modificar un Profesor"
class="glyphicon glyphicon-edit"
aria-hidden="true"
ng-click="vm.modificarProfesor($index)"
style="cursor:pointer"></span>
</td>
<td style="text-align: center">
<span title="Haga click para Eliminar un Profesor"
class="glyphicon glyphicon-remove"
aria-hidden="true"
ng-click="vm.eliminarProfesorModal($index)"
style="cursor:pointer"></span>
</td>
</tr>
</tbody>
</table>
</div>
</div>