Fix missing _ import.

Fallout from #1792.
This commit is contained in:
cahrens
2013-12-11 14:33:18 -05:00
parent 0b161998a1
commit 249aa8ef23

View File

@@ -510,12 +510,12 @@ def instructor_dashboard(request, course_id):
elif 'List course staff' in action:
role = CourseStaffRole(course.location)
datatable = _role_members_table(role, _("List of Staff"), course_id)
datatable = _role_members_table(role, _u("List of Staff"), course_id)
track.views.server_track(request, "list-staff", {}, page="idashboard")
elif 'List course instructors' in action and GlobalStaff().has_user(request.user):
role = CourseInstructorRole(course.location)
datatable = _role_members_table(role, _("List of Instructors"), course_id)
datatable = _role_members_table(role, _u("List of Instructors"), course_id)
track.views.server_track(request, "list-instructors", {}, page="idashboard")
elif action == 'Add course staff':