Skip to content

Instantly share code, notes, and snippets.

@umrashrf
Created April 25, 2013 16:57
Show Gist options
  • Save umrashrf/5461291 to your computer and use it in GitHub Desktop.
Save umrashrf/5461291 to your computer and use it in GitHub Desktop.
iulms attendance page html
<table class="attendance-table">
<tbody><tr class="attendance-table-head">
<th class="table-head-td-course">Course</th>
<th class="table-head-td">Total Classes</th>
<th class="table-head-td">Present</th>
<th class="table-head-td">Absent</th>
<th class="table-head-td">Details</th>
</tr>
<tr class="attendanceRow">
<td class="attendanceRowCourse">COMPUTER PROGRAMMING (031301057)</td>
<td class="attendanceRowStat">16</td>
<td class="attendanceRowStat">13</td>
<td class="attendanceRowStat">3</td>
<td class="attendanceRowStat">
<a href="javascript:void(0)" onclick="GetCourseInfo('031301057')">View Summary</a>
</td>
</tr>
<tr class="attendanceRow">
<td class="attendanceRowCourse">COMPUTER PROGRAMMING LAB (031301058)</td>
<td class="attendanceRowStat">18</td>
<td class="attendanceRowStat">11</td>
<td class="attendanceRowStat">7</td>
<td class="attendanceRowStat">
<a href="javascript:void(0)" onclick="GetCourseInfo('031301058')">View Summary</a>
</td>
</tr>
</tbody></table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment