Create M.A.S.A Version 1.0
This commit is contained in:
57
app/partials/report/section_report.html
Normal file
57
app/partials/report/section_report.html
Normal file
@@ -0,0 +1,57 @@
|
||||
<div class="row clearfix">
|
||||
<h4>Reportes de Secciones</h4>
|
||||
<br>
|
||||
</br>
|
||||
<div>
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="20%" style="text-align: center">
|
||||
Sección
|
||||
</th>
|
||||
<th width="20%" style="text-align: center">
|
||||
Nombre de la Materia
|
||||
</th>
|
||||
<th width="20%" style="text-align: center">
|
||||
Codigo de la Materia
|
||||
</th>
|
||||
<th width="10%" style="text-align: center">
|
||||
Semestre
|
||||
</th>
|
||||
<th width="20%" style="text-align: center">
|
||||
Reportes por Sección
|
||||
</th>
|
||||
<th width="10%" style="text-align: center">
|
||||
Estudiantes
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-repeat = "section in vm.section">
|
||||
<td style="vertical-align:middle">{{ section.name }}</td>
|
||||
<td style="vertical-align:middle">{{ section.course }}</td>
|
||||
<td style="vertical-align:middle">{{ section.code }}</td>
|
||||
<td style="vertical-align:middle">{{ section.semester }}</td>
|
||||
<td style="text-align: center">
|
||||
<span class="glyphicon glyphicon-list-alt"
|
||||
aria-hidden="true"
|
||||
ng-click="vm.sectionReport($index)"
|
||||
style="cursor:pointer"></span>
|
||||
</td>
|
||||
<td style="text-align: center">
|
||||
<span class="glyphicon glyphicon-list"
|
||||
aria-hidden="true"
|
||||
ng-click="vm.listStudents($index)"
|
||||
style="cursor:pointer"></span>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<button class = "btn-warning btn"
|
||||
type = "button"
|
||||
style = "margin: 10px"
|
||||
ng-click = "vm.back()">
|
||||
Regresar
|
||||
</button>
|
||||
</div>
|
Reference in New Issue
Block a user