- ${sidebar_account_activation_message | n, decode.utf8}
+ <%include file="${static.get_template_path('registration/account_activation_sidebar_notice.html')}" />
%endif
diff --git a/lms/templates/registration/account_activation_sidebar_notice.html b/lms/templates/registration/account_activation_sidebar_notice.html
index 5fc1a8ca75..be474707d2 100644
--- a/lms/templates/registration/account_activation_sidebar_notice.html
+++ b/lms/templates/registration/account_activation_sidebar_notice.html
@@ -15,20 +15,7 @@ from openedx.core.djangolib.markup import HTML, Text
Notice
${_("Activate your account!")}
-
${Text(_(
- "Check your {email_start}{email}{email_end} inbox for an account activation link from {platform_name}. "
- "If you need help, contact {link_start}{platform_name} Support{link_end}."
- )).format(
- platform_name=platform_name,
- email_start=HTML(""),
- email_end=HTML(""),
- email=email,
- link_start=HTML("").format(
- activation_email_support_link=activation_email_support_link,
- ),
- link_end=HTML(""),
- )}
-
+
${ activate_account_message | n, decode.utf8 }
## TODO: Add resend activation email functionality.
## TODO: Implementation of this is part of ENT-353.
##
diff --git a/lms/templates/registration/activate_account_notice.html b/lms/templates/registration/activate_account_notice.html
deleted file mode 100644
index 80b809943e..0000000000
--- a/lms/templates/registration/activate_account_notice.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<%page expression_filter="h"/>
-<%!
-from django.utils.translation import ugettext as _
-from openedx.core.djangolib.markup import HTML, Text
-%>
-
-
-
-
${_("You're almost there!")}
-
-
${Text(_(
- "There's just one more step: Before you "
- "enroll in a course, you need to activate "
- "your account. We've sent an email message to "
- "{email_start}{email}{email_end} with "
- "instructions for activating your account. If "
- "you don't receive this message, check your "
- "spam folder."
- )).format(
- email_start=HTML(""),
- email_end=HTML(""),
- email=email,
- )}
-