[973924]: / qiita_pet / templates / error.html

Download this file

11 lines (10 with data), 567 Bytes

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