Skip to content
Snippets Groups Projects
Commit 9632cc8d authored by Branson Stephens's avatar Branson Stephens
Browse files

Added basic 500 template. I did this because sometimes Django gives...

Added basic 500 template. I did this because sometimes Django gives uninformative error messages (while in DEBUG mode) if the 500 template is absent.
parent e965d7b7
No related branches found
No related tags found
No related merge requests found
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Page unavailable</title>
</head>
<body>
<h1>500: Page unavailable</h1>
<p>Sorry, but the requested page is unavailable due to a server hiccup.</p>
<p>The admins have been notified.</p>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment