Files
edx-platform/lms/templates/verify_student/reverify_not_allowed.html
Eric Fischer 7077c933a4 Make verify_student templates safe
Fixes safe_template_linter errors for everything under verify_student. Includes
fixes to Jasmine tests and usage of HtmlUtils functionality.
2016-03-30 13:47:42 -04:00

30 lines
950 B
HTML

<%page expression_filter="h"/>
<%!
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>