Create M.A.S.A Version 1.0
This commit is contained in:
53
app/partials/report/course_report.html
Normal file
53
app/partials/report/course_report.html
Normal file
@@ -0,0 +1,53 @@
|
||||
<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>
|
Reference in New Issue
Block a user