Commit 02bbccd4 by Douglas Hall Committed by GitHub

Merge pull request #15220 from edx/douglashall/fix_activation_email_support_link

Fix the activation email support link in the dashboard sidebar
parents 6ff61480 0bf74f84
......@@ -23,8 +23,9 @@ from openedx.core.djangolib.markup import HTML, Text
email_start=HTML("<strong>"),
email_end=HTML("</strong>"),
email=email,
activation_email_support_link=activation_email_support_link,
link_start=HTML("<a target='_blank' href='${activation_email_support_link}'>"),
link_start=HTML("<a target='_blank' href='{activation_email_support_link}'>").format(
activation_email_support_link=activation_email_support_link,
),
link_end=HTML("</a>"),
)}
</p>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment