diff --git a/lms/templates/registration/password_reset_email.html b/lms/templates/registration/password_reset_email.html index e7bbc6cf35..568a140686 100644 --- a/lms/templates/registration/password_reset_email.html +++ b/lms/templates/registration/password_reset_email.html @@ -1,5 +1,5 @@ {% load i18n %}{% load url from future %}{% autoescape off %} -{% blocktrans %}You're receiving this e-mail because you requested a password reset for your user account at edx.org.{% endblocktrans %} +{% blocktrans with site_name=site_name %}You're receiving this e-mail because you requested a password reset for your user account at {{ site_name }}.{% endblocktrans %} {% trans "Please go to the following page and choose a new password:" %} {% block reset_link %} @@ -10,6 +10,6 @@ http{% if is_secure %}s{% endif %}://{{domain}}{% url 'student.views.password_re {% trans "Thanks for using our site!" %} -{% blocktrans %}The edX Team{% endblocktrans %} +{% blocktrans with platform_name=platform_name %}The {{ platform_name }} Team{% endblocktrans %} {% endautoescape %}