Files
edx-platform/lms/templates/verify_student/reverify_not_allowed.html
Will Daly 8c52c92bcb Reverification iOS support and refactor
* Delete reverification templates
* Delete photocapture.js
* Delete unused "name change" end-points
* Rebuild the reverification views using Backbone sub-views
* Stop passing template names to the JavaScript code
* Avoid hard-coding the parent view ID in the webcam view (for getting the capture click sound URL)
2015-06-22 08:45:12 -07:00

29 lines
919 B
HTML

<%!
from django.utils.translation import ugettext as _
from django.core.urlresolvers import reverse
%>
<%inherit file="../main.html" />
<%block name="pagetitle">${_("Identity Verification")}</%block>
<%block name="content">
<div class="reverify-blocked">
<h1 class="title">${_("Identity Verification")}</h1>
<div class="instructions">
<p>
% if status in ["pending", "approved"]:
${_("You have already submitted your verification information. You will see a message on your dashboard when the verification process is complete (usually within 1-2 days).")}
% else:
${_("You cannot verify your identity at this time.")}
% endif
</p>
</div>
<div class="wrapper-actions">
<a class="action action-primary" href="${ reverse('dashboard') }">${_("Return to Your Dashboard")}</a>
</div>
</div>
</%block>