Skip to content
Snippets Groups Projects
Unverified Commit b62ce901 authored by sofiayoon's avatar sofiayoon Committed by GitHub
Browse files

Merge pull request #27841 from edx/syoon/AA-827

feat: updated course end text AA-827
parents 020c3707 6f99edcd
No related branches found
No related tags found
No related merge requests found
......@@ -333,8 +333,9 @@ class CourseEndDate(DateSummary):
if self.date and self.current_time <= self.date:
mode, is_active = CourseEnrollment.enrollment_mode_for_user(self.user, self.course_id)
if is_active and CourseMode.is_eligible_for_certificate(mode):
return _('This course will be archived, which means you can review the course content '
'but can no longer participate in graded assignments or earn a certificate.')
return _('After this date, the course will be archived, which means you can review the '
'course content but can no longer participate in graded assignments or work towards earning '
'a certificate.')
else:
return _('After the course ends, the course content will be archived and no longer active.')
elif self.date:
......
......@@ -520,8 +520,9 @@ class CourseDateSummaryTest(SharedModuleStoreTestCase):
user = create_user()
CourseEnrollmentFactory(course_id=course.id, user=user, mode=CourseMode.VERIFIED)
block = CourseEndDate(course, user)
assert block.description == ('This course will be archived, which means you can review the course content '
'but can no longer participate in graded assignments or earn a certificate.')
assert block.description == ('After this date, the course will be archived, which means you can review the '
'course content but can no longer participate in graded assignments or work '
'towards earning a certificate.')
def test_course_end_date_for_non_certificate_eligible_mode(self):
course = create_course_run(days_till_start=-1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment