%! from django.utils.translation import ugettext as _ %>
<%! from django.core.urlresolvers import reverse %>
% if reverifications["must_reverify"]:
% if len(reverifications["must_reverify"]) > 1:
${_("You need to re-verify to continue")}
${_("To continue in the ID Verified track in the following courses, you need to re-verify your identity:")}
% for item in reverifications["must_reverify"]:
${_('{course_name}: Re-verify by {date}').format(course_name="item.course_name", date=item.date)}
% endfor
% elif reverifications["must_reverify"]:
${_("You need to re-verify to continue")}
% for item in reverifications["must_reverify"]:
${_('To continue in the ID Verified track in {course_name}, you need to re-verify your identity by {date}.').format(course_name="" + item.course_name + "", date=item.date)}
% endfor
%endif
%endif
%if reverifications["denied"] and denied_banner:
${_("Your re-verification failed")}
% for item in reverifications["denied"]:
% if item.display:
${_('Your re-verification for {course_name} failed and you are no longer eligible for a Verified Certificate. If you think this is in error, please contact us at {email}.').format(course_name="" + item.course_name+ "", email='{email}'.format(
email=billing_email
))}