19 lines
505 B
HTML
19 lines
505 B
HTML
<%! from django.utils.translation import ugettext as _ %>
|
|
<%namespace name='static' file='../static_content.html'/>
|
|
|
|
<%inherit file="../main.html" />
|
|
|
|
<%block name="pagetitle">${_("Verification Deadline Has Passed")}</%block>
|
|
|
|
<%block name="content">
|
|
<section class="outside-app">
|
|
<p>${_(
|
|
u"The verification deadline for {course_name} was {date}. "
|
|
u"Verification is no longer available."
|
|
).format(
|
|
course_name=course.display_name,
|
|
date=deadline
|
|
)}</p>
|
|
</section>
|
|
</%block>
|