From d1f4e9b0a6154fb279c703639e4ed8af2416bb6a Mon Sep 17 00:00:00 2001 From: Clinton Blackburn Date: Thu, 15 Jun 2017 18:41:17 -0400 Subject: [PATCH] Updated messaging for denied verification submissions Learners now see a message informing them that their status is denied rather than expired. LEARNER-1486 --- .../dashboard/_dashboard_status_verification.html | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lms/templates/dashboard/_dashboard_status_verification.html b/lms/templates/dashboard/_dashboard_status_verification.html index ebcec838b9..28fcd7def8 100644 --- a/lms/templates/dashboard/_dashboard_status_verification.html +++ b/lms/templates/dashboard/_dashboard_status_verification.html @@ -15,7 +15,15 @@ from django.utils.translation import ugettext as _ ${_("Current Verification Status: Pending")}

${_("Your edX ID verification is pending. Your verification information has been submitted and will be reviewed shortly.")}

-%elif verification_status in ['must_reverify', 'expired']: +%elif verification_status in ['denied','must_reverify', 'must_retry']: +
  • + ${_("Current Verification Status: Denied")} +

    ${_("Your verification submission was not accepted. To receive a verified certificate, you must submit a new photo of yourself and your government-issued photo ID before the verification deadline for your course.")}

    + +
  • +%elif verification_status == 'expired':
  • ${_("Current Verification Status: Expired")}

    ${_("Your verification has expired. To receive a verified certificate, you must submit a new photo of yourself and your government-issued photo ID before the verification deadline for your course.")}