Files
edx-platform/lms/templates/static_templates/server-error.html
Nate Hardison 799d56d028 Theme static error pages
Reference the `PLATFORM_NAME` and `TECH_SUPPORT_EMAIL` settings in
the static error pages instead of hardcoded, edX-specific values.
2013-06-05 10:27:24 -07:00

7 lines
352 B
HTML

<%inherit file="../main.html" />
<section class="outside-app">
<h1>There has been a 500 error on the <em>${settings.PLATFORM_NAME}</em> servers</h1>
<p>Please wait a few seconds and then reload the page. If the problem persists, please email us at <a href="mailto:${settings.TECH_SUPPORT_EMAIL}">${settings.TECH_SUPPORT_EMAIL}</a>.</p>
</section>