forked from Stanford-Online/edx-theme
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
333 additions
and
277 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
|
||
<%! from django.utils.translation import ugettext as _ %> | ||
<section class="research-info"> | ||
<h2>Our Research Community</h2> | ||
<p>Stanford University pursues the science of learning. Online learners are important participants in that pursuit. The information we gather from your engagement with our instructional offerings makes it possible for faculty, researchers, designers and engineers to continuously improve their work and, in that process, build learning science.</p> | ||
<p>By registering as an online learner, you are also participating in research... <br /><a href="/tos">Read Terms of Service and Privacy Policy.</a></p> | ||
<h2>${_('Our Research Community')}</h2> | ||
<p>${_('Stanford University pursues the science of learning. Online learners are important participants in that pursuit. The information we gather from your engagement with our instructional offerings makes it possible for faculty, researchers, designers and engineers to continuously improve their work and, in that process, build learning science.')}</p> | ||
<p>${_('By registering as an online learner, you are also participating in research...')} <br /><a href="/tos">${_('Read Terms of Service and Privacy Policy.')}</a></p> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
<p>We encourage you to review our <a href="/tos"><strong>Terms of Service</strong></a> and <a href="/tos#privacy"><strong>Privacy Policy</strong></a> before beginning the course.</p> | ||
<%! from django.utils.translation import ugettext as _ %> | ||
<p>${_('We encourage you to review our {tos_link_start}Terms of Service{link_end} and {privacy_link_start}Privacy Policy{link_end} before beginning the course.').format( | ||
tos_link_start='<a href="/tos"><strong>', | ||
privacy_link_start='<a href="/tos#privacy"><strong>', | ||
link_end='</strong></a>' | ||
)} | ||
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 Stanford Online.{% endblocktrans %} | ||
{% blocktrans with platform_name='Stanford Online' %}You're receiving this e-mail because you requested a password reset for your user account at {{ platform_name }}.{% endblocktrans %} | ||
|
||
{% trans "Please go to the following page and choose a new password:" %} | ||
{% block reset_link %} | ||
https://{{domain}}{% url 'student.views.password_reset_confirm_wrapper' uidb36=uid token=token %} | ||
{% endblock %} | ||
|
||
If you didn't request this change, you can disregard this email - we have not yet reset your password. | ||
{% 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 Stanford Online Team{% endblocktrans %} | ||
{% blocktrans with platform_name='Stanford Online' %}The {{ platform_name }} Team{% endblocktrans %} | ||
|
||
{% endautoescape %} |
Oops, something went wrong.