14 lines
463 B
HTML
14 lines
463 B
HTML
<%page expression_filter="h"/>
|
|
<%! from django.utils.translation import gettext 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 or region in which it is not currently available."
|
|
).format(platform_name=settings.PLATFORM_NAME)}
|
|
</p>
|
|
</section>
|