Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
b62ce901
Unverified
Commit
b62ce901
authored
3 years ago
by
sofiayoon
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #27841 from edx/syoon/AA-827
feat: updated course end text AA-827
parents
020c3707
6f99edcd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lms/djangoapps/courseware/date_summary.py
+3
-2
3 additions, 2 deletions
lms/djangoapps/courseware/date_summary.py
lms/djangoapps/courseware/tests/test_date_summary.py
+3
-2
3 additions, 2 deletions
lms/djangoapps/courseware/tests/test_date_summary.py
with
6 additions
and
4 deletions
lms/djangoapps/courseware/date_summary.py
+
3
−
2
View file @
b62ce901
...
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/courseware/tests/test_date_summary.py
+
3
−
2
View file @
b62ce901
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment