Fix edX name hardcoded in password reset email

This commit is contained in:
Julien Romagnoli
2014-11-06 11:38:00 +00:00
committed by Sarina Canelake
parent a64f375b78
commit a80c09a9f2
4 changed files with 101 additions and 5 deletions

View File

@@ -1,15 +1,15 @@
{% 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 %}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 %}
{{ protocol }}://{{domain}}{% url 'student.views.password_reset_confirm_wrapper' uidb36=uid token=token %}
{{ protocol }}://{{ site_name }}{% url 'student.views.password_reset_confirm_wrapper' uidb36=uid token=token %}
{% endblock %}
{% trans "If you didn't request this change, you can disregard this email - we have not yet reset your password." %}
{% trans "Thanks for using our site!" %}
{% blocktrans %}The edX Team{% endblocktrans %}
{% blocktrans %}The {{ platform_name }} Team{% endblocktrans %}
{% endautoescape %}