500.html 1.22 KB
Newer Older
David Baumgold committed
1
<%! from django.utils.translation import ugettext as _ %>
2
<%inherit file="base.html" />
3
<%block name="title">${_("{studio_name} Server Error").format(studio_name=settings.STUDIO_SHORT_NAME)}</%block>
4
<%block name="bodyclass">view-util util-500</%block>
5 6 7 8

<%block name="content">
<div class="wrapper-content wrapper">
  <section class="content">
9
    <header>
10 11
      <h1 class="title title-1">
        ${_("The {studio_name} servers encountered an error").format(
12
          studio_name="<em>{studio_name}</em>".format(studio_name=settings.STUDIO_SHORT_NAME)
13 14
        )}
      </h1>
15 16 17
    </header>
    <article class="content-primary" role="main">
      <p>
18
        ${_("An error occurred in {studio_name} and the page could not be loaded. Please try again in a few moments.").format(studio_name=settings.STUDIO_SHORT_NAME)}
19 20 21 22 23 24 25 26
        ${_("We've logged the error and our staff is currently working to resolve this error as soon as possible.")}
        ${_('If the problem persists, please email us at {email_link}.').format(
              email_link=u'<a href="mailto:{email_address}">{email_address}</a>'.format(
                  email_address=settings.TECH_SUPPORT_EMAIL,
              )
          )}
      </p>
    </article>
27 28
  </section>
</div>
David Baumgold committed
29
</%block>