Adjust language of LMS emails to work specifically for Stanford. Here there be dragons: lots of ugly conditionals that will need to be changed once we develop a way to "theme" arbitrary strings throughout the site.
15 lines
580 B
Plaintext
15 lines
580 B
Plaintext
<%namespace file="../main.html" import="stanford_theme_enabled" />
|
|
(Not currently used)
|
|
|
|
## TODO: fix this ugly hack
|
|
% if stanford_theme_enabled():
|
|
We are sorry. Our course staff did not approve your request to change
|
|
your name from ${old_name} to ${new_name}. If you need further
|
|
assistance, please e-mail the tech support at
|
|
${settings.TECH_SUPPORT_EMAIL}.
|
|
% else:
|
|
We are sorry. Our course staff did not approve your request to change
|
|
your name from ${old_name} to ${new_name}. If you need further
|
|
assistance, please e-mail the course staff at ta@edx.org.
|
|
% endif
|