@@ -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':
|
||||
|
||||
Reference in New Issue
Block a user