24 lines
885 B
HTML
24 lines
885 B
HTML
<%page expression_filter="h"/>
|
|
<%!
|
|
from django.utils.translation import ugettext as _
|
|
from openedx.core.djangolib.markup import HTML, Text
|
|
%>
|
|
<%inherit file="../main.html" />
|
|
|
|
<%block name="pagetitle">${_("This Course Unavailable In Your Country")}</%block>
|
|
|
|
<!-- This is a test template to test embargo message override for theming. -->
|
|
<main id="main" aria-label="Content" tabindex="-1">
|
|
<section class="outside-app">
|
|
<p>
|
|
${Text(_("Our system indicates that you are trying to access this {platform_name} "
|
|
"course from a country or region currently subject to U.S. economic and trade sanctions. "
|
|
"Unfortunately, because {platform_name} is required to comply with export controls, "
|
|
"we cannot allow you to access this course at this time."
|
|
)).format(
|
|
platform_name=Text(settings.PLATFORM_NAME),
|
|
)}
|
|
</p>
|
|
</section>
|
|
</main>
|