27 lines
848 B
HTML
27 lines
848 B
HTML
<%page expression_filter="h"/>
|
|
<%!
|
|
from django.utils.translation import ugettext as _
|
|
from openedx.core.djangolib.markup import HTML, Text
|
|
%>
|
|
|
|
<div class="sequence hidden-content proctored-exam completed">
|
|
<h3>
|
|
${_("The due date for this {subsection_format} has passed.").format(
|
|
subsection_format=subsection_format,
|
|
)}
|
|
</h3>
|
|
<hr>
|
|
<p>
|
|
${Text(_(
|
|
"Because the due date has passed, this {subsection_format} "
|
|
"is no longer available.{line_break}If you have completed this {subsection_format}, "
|
|
"your grade is available on the {link_start}progress page{link_end}."
|
|
)).format(
|
|
subsection_format=subsection_format,
|
|
line_break=HTML("<br>"),
|
|
link_start=HTML("<a href='{}'>").format(progress_url),
|
|
link_end=HTML("</a>"),
|
|
)}
|
|
</p>
|
|
</div>
|