From 3bdf355b422d93872403f4d7db817a4559d3d8da Mon Sep 17 00:00:00 2001 From: Saurabh Kumar Date: Sat, 15 Feb 2014 01:55:58 +0530 Subject: [PATCH] chore(ErrorPage): make 500 error page more informative --- .../{{cookiecutter.repo_name}}/templates/500.html | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/500.html b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/500.html index 2118bb2c..122e0813 100644 --- a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/500.html +++ b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/500.html @@ -1 +1,13 @@ -

Whoops!

+{% raw %}{% extends "base.html" %} + +{% block title %}Server Error{% endblock %} + +{% block content %} +

Ooops!!! 500

+ +

Looks like something went wrong!

+ +

We track these errors automatically, but if the problem persists feel free to contact us. In the meantime, try refreshing.

+{% endblock content %} + +{% endraw %}