server-error.html 591 Bytes
Newer Older
1
<%! from django.utils.translation import ugettext as _ %>
2
<%inherit file="../main.html" />
3

4
<section class="outside-app">
5 6
  <h1>
    ${_(u"There has been a 500 error on the {platform_name} servers").format(
7
        platform_name=u"<em>{platform_name}</em>".format(platform_name=settings.PLATFORM_NAME)
8 9 10 11
    )}
  </h1>
  <p>
    ${_(u'Please wait a few seconds and then reload the page. If the problem persists, please email us at {email}.').format(
12
        email=u'<a href="mailto:{email}">{email}</a>'.format(
13 14
            email=settings.TECH_SUPPORT_EMAIL
        )
15 16
    )}
  </p>
17
</section>