Reference the `PLATFORM_NAME` and `TECH_SUPPORT_EMAIL` settings in the static error pages instead of hardcoded, edX-specific values.
7 lines
352 B
HTML
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>
|