* cleaned up error module: - only one template - save error message in xml and reload * better display of problem definition and metadata to staff * save error messages as string, not exception objects.
14 lines
459 B
HTML
14 lines
459 B
HTML
<section class="outside-app">
|
|
<h1>There has been an error on the <em>MITx</em> servers</h1>
|
|
<p>We're sorry, this module is temporarily unavailable. Our staff is working to fix it as soon as possible. Please email us at <a href="mailto:technical@mitx.mit.edu">technical@mitx.mit.edu</a> to report any problems or downtime.</p>
|
|
|
|
% if is_staff:
|
|
<h1>Staff-only details below:</h1>
|
|
|
|
<p>Error: ${error | h}</p>
|
|
|
|
<p>Raw data: ${data | h}</p>
|
|
% endif
|
|
|
|
</section>
|