diff --git a/common/static/common/templates/gradebook/_gradebook_table.underscore b/common/static/common/templates/gradebook/_gradebook_table.underscore
index a1246e2dea..0031b761b8 100644
--- a/common/static/common/templates/gradebook/_gradebook_table.underscore
+++ b/common/static/common/templates/gradebook/_gradebook_table.underscore
@@ -34,7 +34,6 @@
<% }) %>
-
<%- strLib.userHeading %> |
<%- strLib.total %> |
@@ -63,11 +62,6 @@
<% }) %>
-
- <%- (student.current_percent * 100).toFixed(2) %>%
- |
-
<%- (student.percent * 100).toFixed(2) %>%
diff --git a/lms/static/js/writable_gradebook.js b/lms/static/js/writable_gradebook.js
index 67c1726d22..a052e8b552 100644
--- a/lms/static/js/writable_gradebook.js
+++ b/lms/static/js/writable_gradebook.js
@@ -235,7 +235,6 @@ $(document).ready(function() {
studentsData: studentsData,
strLib: {
userHeading: gettext('Username'),
- currentGrade: gettext('Current grade'),
total: gettext('Total')
}
}).toString();
|