Skip to content
Snippets Groups Projects
Commit 95ea9d06 authored by Simon Chen's avatar Simon Chen
Browse files

Remove the current_grades column that is not supported by backend

parent 66b1c07b
Branches
Tags
No related merge requests found
...@@ -34,7 +34,6 @@ ...@@ -34,7 +34,6 @@
</th> </th>
<% }) %> <% }) %>
<th title="Current grade"><div class="assignment-label"><%- strLib.userHeading %></div></th>
<th title="Total"><div class="assignment-label"><%- strLib.total %></div></th> <th title="Total"><div class="assignment-label"><%- strLib.total %></div></th>
</tr> </tr>
</thead> </thead>
...@@ -63,11 +62,6 @@ ...@@ -63,11 +62,6 @@
</td> </td>
<% }) %> <% }) %>
<td class="grade_<%- student.current_letter_grade %> data-score-container-class"
title="Current grade">
<%- (student.current_percent * 100).toFixed(2) %>&percnt;
</td>
<td class="grade_<%- student.total_letter_grade %> data-score-container-class" <td class="grade_<%- student.total_letter_grade %> data-score-container-class"
title="Total"> title="Total">
<%- (student.percent * 100).toFixed(2) %>&percnt; <%- (student.percent * 100).toFixed(2) %>&percnt;
......
...@@ -235,7 +235,6 @@ $(document).ready(function() { ...@@ -235,7 +235,6 @@ $(document).ready(function() {
studentsData: studentsData, studentsData: studentsData,
strLib: { strLib: {
userHeading: gettext('Username'), userHeading: gettext('Username'),
currentGrade: gettext('Current grade'),
total: gettext('Total') total: gettext('Total')
} }
}).toString(); }).toString();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment