Files
edx-platform/lms/templates/embargo/default_courseware.html
Will Daly ce9c258f8b Update country access message end-points to be backwards compatible with embargo theme templates
Move default country access messages out of static_templates, so they are not served by other Django views.
2015-02-03 08:59:41 -05:00

13 lines
433 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 or region in which it is not currently available."
).format(platform_name=settings.PLATFORM_NAME)}
</p>
</section>