From 9ce66c78fdea06560051af46f552859eca6bd14c Mon Sep 17 00:00:00 2001 From: muhammad-ammar Date: Tue, 3 Mar 2015 13:17:01 +0500 Subject: [PATCH] Rename `Cohort Management` to `Cohorts` Move `Cohorts` section after `Membership` section --- lms/djangoapps/instructor/views/instructor_dashboard.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/djangoapps/instructor/views/instructor_dashboard.py b/lms/djangoapps/instructor/views/instructor_dashboard.py index ed6b7aefea..a7ed90df09 100644 --- a/lms/djangoapps/instructor/views/instructor_dashboard.py +++ b/lms/djangoapps/instructor/views/instructor_dashboard.py @@ -74,10 +74,10 @@ def instructor_dashboard_2(request, course_id): sections = [ _section_course_info(course, access), _section_membership(course, access), + _section_cohort_management(course, access), _section_student_admin(course, access), _section_data_download(course, access), _section_analytics(course, access), - _section_cohort_management(course, access), ] #check if there is corresponding entry in the CourseMode Table related to the Instructor Dashboard course @@ -338,7 +338,7 @@ def _section_cohort_management(course, access): course_key = course.id section_data = { 'section_key': 'cohort_management', - 'section_display_name': _('Cohort Management'), + 'section_display_name': _('Cohorts'), 'access': access, 'course_cohort_settings_url': reverse( 'course_cohort_settings',