Commit 91e120ee by David Baumgold

Unicode strings for server error page

parent 767feb93
......@@ -2,6 +2,12 @@
<%inherit file="../main.html" />
<section class="outside-app">
<h1>${_("There has been a 500 error on the <em>{platform_name}</em> servers").format(platform_name=settings.PLATFORM_NAME)}</h1>
<p>${_('Please wait a few seconds and then reload the page. If the problem persists, please email us at <a href="{email}">{email}</a>.').format(email=settings.TECH_SUPPORT_EMAIL)}</p>
<h1>${_(u"There has been a 500 error on the <em>{platform_name}</em> servers").format(
platform_name=settings.PLATFORM_NAME
)}</h1>
<p>${_(u'Please wait a few seconds and then reload the page. If the problem persists, please email us at {email}.').format(
email=u'<a href="{email}">{email}</a>'.format(
email=settings.TECH_SUPPORT_EMAIL
)
)}</p>
</section>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment