19 lines
700 B
HTML
19 lines
700 B
HTML
<%! from django.utils.translation import ugettext as _ %>
|
|
<%inherit file="../main.html" />
|
|
|
|
<%block name="pagetitle">${_("This Course Unavailable In Your Country")}</%block>
|
|
|
|
<section class="outside-app">
|
|
<p>
|
|
${_("Our system indicates that you are trying to access this {platform_name} "
|
|
"course from a country currently subject to U.S. economic and trade "
|
|
"sanctions. Unfortunately, at this time {platform_name} must comply with "
|
|
"export controls, and we cannot allow you to access this particular course. "
|
|
"Feel free to browse our catalogue to find other courses you may be "
|
|
"interested in taking."
|
|
).format(
|
|
platform_name=settings.PLATFORM_NAME,
|
|
)}
|
|
</p>
|
|
</section>
|