diff --git a/lms/templates/dashboard.html b/lms/templates/dashboard.html index f7e92ccce2..a3c3fd25e0 100644 --- a/lms/templates/dashboard.html +++ b/lms/templates/dashboard.html @@ -211,55 +211,6 @@ - <% - testcenter_exam_info = course.current_test_center_exam - registration = exam_registrations.get(course.id) - testcenter_register_target = reverse('begin_exam_registration', args=[course.id]) - %> - % if testcenter_exam_info is not None: - - % if registration is None and testcenter_exam_info.is_registering(): -
- ${_("Register for Pearson exam")} -

${_("Registration for the Pearson exam is now open and will close on {end_date}").format(end_date="{}".format(testcenter_exam_info.registration_end_date_text))}

-
- % endif - - % if registration is not None: - % if registration.is_accepted: -
- ${_("Schedule Pearson exam")} -

${_("{link_start}Registration{link_end} number: {number}").format( - link_start=''.format(url=testcenter_register_target), - link_end='', - number=registration.client_candidate_id, - )}

-

${_("Write this down! You'll need it to schedule your exam.")}

-
- % endif - % if registration.is_rejected: -
-

- ${_("Your registration for the Pearson exam has been rejected. Please {link_start}see your registration status details{link_end}.").format( - link_start=''.format(url=testcenter_register_target), - link_end='')} - ${_("Otherwise {link_start}contact edX at {email}{link_end} for further help.").format( - link_start=''.format(email="exam-help@edx.org", about=get_course_about_section(course, 'university'), number=course.display_number_with_default), - link_end='', - email="exam-help@edx.org", - )} -

- % endif - % if not registration.is_accepted and not registration.is_rejected: -
-

${_("Your {link_start}registration for the Pearson exam{link_end} is pending.").format(link_start=''.format(url=testcenter_register_target), link_end='')} - ${_("Within a few days, you should see a confirmation number here, which can be used to schedule your exam.")} -

-
- % endif - % endif - % endif - <% cert_status = cert_statuses.get(course.id) %>