Template were using global TECH_SUPPORT_EMAIL for error pages. This changes them to use the site email if there is one.
23 lines
880 B
HTML
23 lines
880 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" />
|
|
<%namespace name='static' file='../static_content.html'/>
|
|
|
|
<main id="main" aria-label="Content" tabindex="-1">
|
|
<section class="outside-app">
|
|
<h1>
|
|
${Text(_("Currently the {platform_name} servers are down")).format(
|
|
platform_name=HTML(u"<em>{}</em>").format(Text(static.get_platform_name()))
|
|
)}
|
|
</h1>
|
|
<p>
|
|
${Text(_("Our staff is currently working to get the site back up as soon as possible. "
|
|
"Please email us at {tech_support_email} to report any problems or downtime.")).format(
|
|
tech_support_email=HTML('<a href="mailto:{0}">{0}</a>').format(Text(static.get_tech_support_email_address()))
|
|
)}</p>
|
|
</section>
|
|
</main>
|