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.
8 lines
225 B
Plaintext
8 lines
225 B
Plaintext
<%namespace file="../main.html" import="stanford_theme_enabled" />
|
|
## TODO: fix ugly hack
|
|
% if stanford_theme_enabled():
|
|
Welcome to ${settings.PLATFORM_NAME} Courses!
|
|
% else:
|
|
Welcome to ${settings.PLATFORM_NAME}!
|
|
% endif
|