Commit ed2afa8a by David Baumgold

Merge pull request #6486 from edx/emails-remove-edx

clean up reject_name_change email template a bit
parents 6efe0ac3 0ec48559
...@@ -6,10 +6,19 @@ ...@@ -6,10 +6,19 @@
% if stanford_theme_enabled(): % if stanford_theme_enabled():
${_("We are sorry. Our course staff did not approve your request to change " ${_("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 " "your name from {old_name} to {new_name}. If you need further "
"assistance, please e-mail the tech support at").format(old_name=old_name, new_name=new_name)} "assistance, please e-mail the tech support at {email}"
${settings.TECH_SUPPORT_EMAIL}. ).format(
old_name=old_name,
new_name=new_name,
email=settings.TECH_SUPPORT_EMAIL,
)}
% else: % else:
${_("We are sorry. Our course staff did not approve your request to change " ${_("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 " "your name from {old_name} to {new_name}. If you need further "
"assistance, please e-mail the course staff at ta@edx.org.").format(old_name=old_name, new_name=new_name)} "assistance, please e-mail the course staff at {email}."
).format(
old_name=old_name,
new_name=new_name,
email="ta@edx.org",
)}
% endif % endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment