<text><buttontype="button"class="btn btn-primary"><%=link_to'New Student Info',new_student_grade_path,data: {confirm: 'Create new student information?'}%></button></text>
<divclass= "container">
<tableclass= "table table-bordered">
<thead>
<th>Unique ID</th>
<thstyle="display:none;">Unique ID</th>
<th>First Name</th>
<th>Last Name</th>
<th>English Grade</th>
...
...
@@ -8,23 +48,28 @@
<th>Science Grade</th>
<th>History Grade</th>
<th>Average</th>
<thcolspan="3">Functions</th>
</thead>
<tbody>
<br>
<%@StudentGrades.eachdo|g|%>
<tr>
<td><%=g.id%></td>
<tdstyle="display:none;"><%=g.id%></td>
<td><%=g.first_name%></td>
<td><%=g.last_name%></td>
<td><%=g.english_grade%></td>
<td><%=g.math_grade%></td>
<td><%=g.science_grade%></td>
<td><%=g.history_grade%></td>
<td><buttontype="button"class="btn btn-success"><%=link_to'Show',show_student_grade_path(g.id),data: {confirm: 'Are you sure you want to show?'}%></button></td>
<td><buttontype="button"class="btn btn-danger"><%=link_to'Destroy',destroy_student_grade_path(g.id),data: {confirm: 'Are you sure you want to delete?'}%></button></td>