From c5f50ea0adf28526b5cc1e62f240cb39809c794c Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Thu, 18 Aug 2011 10:46:48 +0200 Subject: [PATCH] Add 500.html template, missed in previous commit --- templates/errors/500.html | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 templates/errors/500.html diff --git a/templates/errors/500.html b/templates/errors/500.html new file mode 100644 index 00000000..57dda5c3 --- /dev/null +++ b/templates/errors/500.html @@ -0,0 +1,9 @@ +{%extends "base/page.html"%} +{%block title%}Server error{%endblock%} +{%block contents%} +

Server Error

+

+{{message}} +

+ +{%endblock%} -- 2.39.5