module-error.html 718 Bytes
Newer Older
1 2
<%! from django.utils.translation import ugettext as _ %>

3
<section class="outside-app">
4
  <h1>${_("There has been an error on the <em>{platform_name}</em> servers").format(platform_name=settings.PLATFORM_NAME)}</h1>
5
  <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:{tech_support_email}\">{tech_support_email}</a> to report any problems or downtime.").format(platform_name=settings.PLATFORM_NAME, tech_support_email=settings.TECH_SUPPORT_EMAIL)}</p>
6

7
% if staff_access:
8
<h1>${_("Details")}</h1>
9

10
<p>${_("Error:")}
11 12 13 14
<pre>
${error | h}
</pre>
</p>
15

16
<p>${_("Raw data:")}
17

18 19 20 21
<pre>${data | h}</pre>
</p>

% endif
22
</section>