Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lms/djangoapps/courseware/date_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,9 @@ def date(self):

@property
def title(self):
if getattr(settings, "CAMPUS_HIDE_DEADLINE_FOR_VERIFICATION", False):
return ""

dynamic_deadline = self._dynamic_deadline()
if dynamic_deadline is not None:
return _('Upgrade to Verified Certificate')
Expand Down
1 change: 1 addition & 0 deletions lms/envs/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -3474,6 +3474,7 @@ def _make_locale_paths(settings):

############### Custom settings Campus Romero ###############
CAMPUS_BYPASS_VERIFICATION_SERVICE = True
CAMPUS_HIDE_DEADLINE_FOR_VERIFICATION = True

############## Plugin Django Apps #########################

Expand Down