Pull out edX into variables in password reset email

This commit is contained in:
Kevin Luo
2014-07-11 12:25:54 -07:00
parent 3d409cf323
commit 3a2276b537

View File

@@ -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 %}