NDOJ/templates/error.html

33 lines
773 B
HTML
Raw Normal View History

2020-01-21 06:35:58 +00:00
<html>
2023-01-27 23:11:10 +00:00
<head>
2020-01-21 06:35:58 +00:00
<title>{{ code }} - {{ id }}</title>
<style>
2023-01-27 23:11:10 +00:00
body {
font-size: 16px;
font-smooth: never;
-webkit-font-smoothing: none;
margin-left: 50px;
margin-right: 50px;
margin-top: 20px;
}
2020-01-21 06:35:58 +00:00
2023-01-27 23:11:10 +00:00
pre {
line-height: 1.3;
font-smooth: never;
-webkit-font-smoothing: none;
white-space: pre-wrap;
}
2020-01-21 06:35:58 +00:00
</style>
2023-01-27 23:11:10 +00:00
</head>
<body>
<h2>SIGSEGV: {{ id }}</h2>
<hr/>
<pre>{{ description }}
2020-01-21 06:35:58 +00:00
site: fatal signal: Segmentation fault
2020-08-05 16:50:08 +00:00
site died (signal <b>{{ code }}</b>, exit -11)<br><br><a href="javascript:history.back()">Go back</a></pre>
2023-01-27 23:11:10 +00:00
{% if request.user.is_superuser and traceback %}
<pre>{{ traceback }}</pre>
{% endif %}
</body>
2020-01-21 06:35:58 +00:00
</html>