Switch to unified view

a b/qiita_pet/templates/error.html
1
{% extends sitebase.html %}
2
{% block content%}
3
    <h1 style="text-align:center">ERROR: CODE {{status_code}}!</h1>
4
    <h2 style="text-align:center">{% raw escape(error) %}</h2>
5
    <p style="text-align:center">The error has been logged and will be looked at.</p>
6
    <p style="text-align:center">Need help? Send us an <a href="mailto:{% raw qiita_config.help_email %}">email</a>.</p>
7
    {% if is_admin %}
8
    <p style="text-align:center">Go to the <a href="{% raw qiita_config.portal_dir %}/admin/error/">error page</a> to view the logs</p>
9
    {% end %}
10
{% end %}