<%page expression_filter="h"/> <%namespace name='static' file='../static_content.html'/> <%! from django.urls import reverse from django.utils.translation import ugettext as _ from lms.djangoapps.verify_student.services import IDVerificationService %> %if verification_display: %if verification_status == 'approved':
  • ${_("Current Verification Status: Approved")}

    ${_("Your edX verification has been approved. Your verification is effective for one year after submission.")}

    %if verification_expiry:

    ${_("Warning")}: ${_("Your photo verification expires on {verification_expiry}. Please be aware photo verification can take up to three days once initiated and you will not be able to earn a certificate or take a proctored exam until approved.").format(verification_expiry=verification_expiry)}

    ${_("Resubmit Verification")}
    %endif
  • %elif verification_status == 'pending':
  • ${_("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 ['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.")} %if verification_errors:

    ${_("Your verification was denied for the following reasons:")}

    %endif

    ${_("Resubmit Verification")}
  • %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.")}

    ${_("Warning")}: ${_(" Please be aware photo verification can take up to three days once initiated and you will not be able to earn a certificate or take a proctored exam until approved.")}

    ${_("Resubmit Verification")}
  • %endif %endif