Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.
Merged
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: 2 additions & 1 deletion common/djangoapps/student/views/dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -619,10 +619,11 @@ def student_dashboard(request):

# Display activation message
activate_account_message = ''
activation_email_support_link = 'http://edtech.ucsd.edu/uc-san-diego-online-help'
if not user.is_active:
activate_account_message = Text(_(
"Check your {email_start}{email}{email_end} inbox for an account activation link from {platform_name}. "
"If you need help, contact <a href='https://edtech.ucsd.edu/uc-san-diego-online-help'> {platform_name} Support</a>."
"If you need help, visit the {link_start}{platform_name} Help Center{link_end}."
)).format(
platform_name=platform_name,
email_start=HTML("<strong>"),
Expand Down