From 5612df9436cad6d9b88242cb26c8d2de7fd174e7 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Mon, 17 Jun 2024 11:03:25 -0500 Subject: Present errors more cleanly. --- gn_auth/templates/50x.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 gn_auth/templates/50x.html (limited to 'gn_auth/templates') diff --git a/gn_auth/templates/50x.html b/gn_auth/templates/50x.html new file mode 100644 index 0000000..859a232 --- /dev/null +++ b/gn_auth/templates/50x.html @@ -0,0 +1,25 @@ +{%extends "base.html"%} + +{%block title%} +{{error.status_code or 500}}: {{error.description or "Generic Exception"}} +{%endblock%} + +{%block pagetitle%} +{{error.status_code or 500}}: {{error.description or "Generic Exception"}} +{%endblock%} + +{%block content%} + +

The system has done something it should not! This is our fault.

+ +

+ Please send us the details below to help us figure out what we did wrong and + fix it. +

+ +
+

URI: {{page}}

+
{{"".join(trace)}}
+
+ +{%endblock%} -- cgit v1.2.3