activation_email.txt 1.14 KB
Newer Older
1
<%! from django.utils.translation import ugettext as _ %>
2
<%! from openedx.core.djangoapps.site_configuration import helpers as configuration_helpers %>
3
${_("Thank you for creating an account with {platform_name}!").format(
4
    platform_name=configuration_helpers.get_value('PLATFORM_NAME', settings.PLATFORM_NAME)
5
)}
Nate Hardison committed
6

7 8 9 10
${_("There's just one more step before you can enroll in a course: "
    "you need to activate your {platform_name} account. To activate "
    "your account, click the following link. If that doesn't work, "
    "copy and paste the link into your browser's address bar.").format(
11
        platform_name=configuration_helpers.get_value('PLATFORM_NAME', settings.PLATFORM_NAME)
12
    )}
pmitros committed
13

14 15 16
% if is_secure:
  https://${ site }/activate/${ key }
% else:
17
  http://${ site }/activate/${ key }
18
% endif
19 20 21
${_("If you didn't create an account, you don't need to do anything; you "
      "won't receive any more email from us. If you need assistance, please "
      "do not reply to this email message. Check the help section of the "
22
      "{platform_name} website.").format(platform_name=configuration_helpers.get_value('PLATFORM_NAME', settings.PLATFORM_NAME))}