Commit 9f2c31d9 by Adam

Merge pull request #2036 from edx/adam/remove-@edx-emails

removes references to specific edx email addresses (STUD-1069)
parents ad6e4f2c 517ca932
...@@ -105,7 +105,10 @@ require(["domReady!", "jquery", "js/models/settings/course_details", "js/views/s ...@@ -105,7 +105,10 @@ require(["domReady!", "jquery", "js/models/settings/course_details", "js/views/s
<div class="notice notice-incontext notice-workflow"> <div class="notice notice-incontext notice-workflow">
<h3 class="title">${_("Promoting Your Course with edX")}</h3> <h3 class="title">${_("Promoting Your Course with edX")}</h3>
<div class="copy"> <div class="copy">
<p>${_('Your course summary page will not be viewable until your course has been announced. To provide content for the page and preview it, follow the instructions provided by your <abbr title="Program Manager">PM</abbr> or Conrad Warre <a rel="email" class="action action-email" href="mailto:conrad@edx.org">(conrad@edx.org)</a>.')}</p> <p>${_('Your course summary page will not be viewable until your '
'course has been announced. To provide content for the '
'page and preview it, follow the instructions provided '
'by your <abbr title="Program Manager">PM</abbr>.')}</p>
</div> </div>
</div> </div>
% endif % endif
......
...@@ -7,6 +7,7 @@ import logging ...@@ -7,6 +7,7 @@ import logging
from django.conf import settings from django.conf import settings
from django.http import HttpResponse, Http404 from django.http import HttpResponse, Http404
from django.utils.translation import ugettext as _
from xmodule.course_module import CourseDescriptor from xmodule.course_module import CourseDescriptor
from xmodule.open_ended_grading_classes.grading_service_module import GradingService, GradingServiceError from xmodule.open_ended_grading_classes.grading_service_module import GradingService, GradingServiceError
...@@ -21,7 +22,14 @@ from open_ended_grading.utils import does_location_exist ...@@ -21,7 +22,14 @@ from open_ended_grading.utils import does_location_exist
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
STAFF_ERROR_MESSAGE = 'Could not contact the external grading server. Please contact the development team. If you do not have a point of contact, you can contact Vik at vik@edx.org.' STAFF_ERROR_MESSAGE = _(
u'Could not contact the external grading server. Please contact the '
u'development team at {email}.'
).format(
email=u'<a href="mailto:{tech_support_email}>{tech_support_email}</a>'.format(
tech_support_email=settings.TECH_SUPPORT_EMAIL
)
)
class MockStaffGradingService(object): class MockStaffGradingService(object):
......
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