61 lines
2.1 KiB
HTML
61 lines
2.1 KiB
HTML
<style>
|
|
.table{
|
|
border: 1px solid #000 !important;
|
|
}
|
|
</style>
|
|
|
|
|
|
<div class="container-fluid container-fullw bg-white" ng-controller="examAttendanceCtrl">
|
|
|
|
|
|
<div align="right">
|
|
<button class="btn btn-success btn-sm" ng-click="printAttendanceDetails();">Print</button>
|
|
</div>
|
|
|
|
|
|
<!-- <pre>{{ dataForExamAttendance | json}}</pre> -->
|
|
|
|
|
|
|
|
<div id="attendance_header">
|
|
<table width="100%" border="1" id = "" style="background-color:#fff;">
|
|
<tbody>
|
|
<tr>
|
|
<td><center>{{pdfuname}} {{ pdfbatch }}- Examination {{pdfcenter.CenterName}} Center Attendance - {{pdfexamdate | date:"dd-MM-yyyy"}}</center></td>
|
|
</tr>
|
|
</tbody>
|
|
|
|
</table>
|
|
</div>
|
|
|
|
|
|
<div id="student_list_AM">
|
|
<table width="100%" border="1" id = "attendanceTableAM" style="background-color:#fff;" ng-if="studentInfoAM_Length != 0">
|
|
<thead><tr> <th>SNO</th> <th>STUDENT NAME</th> <th>COURSE</th> <th>SEM/YEAR</th> <th>ENROLLMENT NO</th> <th>SUBJECT CODE</th> <th>SUBJECT NAME</th><th>BOOKLET NO</th> <th>STUDENT SUGNATURE</th> </tr></thead>
|
|
<tbody>
|
|
<tr ng-repeat="student in dataForExamAttendanceAM" >
|
|
<td>{{($index+1)}}</td> <td>{{student.Firstname}} {{student.Lastname}} </td><td>{{student.CourseName}}</td><td>{{student.Sem_Year}}</td><td>{{student.EnrollmentID}}</td><td>{{student.SubjectCode}}</td><td>{{student.SubjectName}}</td><td></td><td></td>
|
|
</tr>
|
|
</tbody>
|
|
|
|
</table>
|
|
</div>
|
|
|
|
<div id="student_list_PM">
|
|
<table width="100%" border="1" id = "attendanceTablePM" style="background-color:#fff;" ng-if="studentInfoPM_Length != 0">
|
|
<thead><tr> <th>SNO</th> <th>STUDENT NAME</th> <th>COURSE</th> <th>SEM/YEAR</th> <th>ENROLLMENT NO</th> <th>SUBJECT CODE</th> <th>SUBJECT NAME</th><th>BOOKLET NO</th> <th>STUDENT SUGNATURE</th> </tr></thead>
|
|
<tbody>
|
|
<tr ng-repeat="student in dataForExamAttendancePM" >
|
|
<td>{{($index+1)}}</td> <td>{{student.Firstname}} {{student.Lastname}} </td><td>{{student.CourseName}}</td><td>{{student.Sem_Year}}</td><td>{{student.EnrollmentID}}</td><td>{{student.SubjectCode}}</td><td>{{student.SubjectName}}</td><td></td><td></td>
|
|
</tr>
|
|
</tbody>
|
|
|
|
</table>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|