courseware-error.html 1.16 KB
Newer Older
1
<%! from django.utils.translation import ugettext as _ %>
2 3
<%inherit file="/main.html" />
<%namespace name='static' file='../static_content.html'/>
4
<%block name="bodyclass">courseware</%block>
5
<%block name="pagetitle">${_("Courseware")}</%block>
6 7 8 9
<%!
from django.utils.translation import ugettext as _
from openedx.core.djangolib.markup import HTML, Text
%>
10

11
<%block name="headextra">
12 13
<%static:css group='style-course-vendor'/>
<%static:css group='style-course'/>
14 15 16
</%block>

<%include file="/courseware/course_navigation.html" args="active_page='courseware'" />
17

18
<section class="container">
19
  <section class="outside-app">
20 21
    <h1>
      ${_('There has been an error on the {platform_name} servers').format(
22
          platform_name=u'<span class="edx">{}</span>'.format(static.get_platform_name())
23 24 25 26
      )}
    </h1>
    <p>
      ${_("We're sorry, this module is temporarily unavailable. Our staff is working to fix "
27
      "it as soon as possible. Please email us at {tech_support_email} to report any problems or downtime.").format(
28
      tech_support_email=u'<a href=\"mailto:{0}\">{0}</a>'.format(static.get_tech_support_email_address())
29 30
      )}
    </p>
31
  </section>
32
</section>