aboutsummaryrefslogtreecommitdiff
path: root/qc_app/templates/http-error.html
diff options
context:
space:
mode:
Diffstat (limited to 'qc_app/templates/http-error.html')
-rw-r--r--qc_app/templates/http-error.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/qc_app/templates/http-error.html b/qc_app/templates/http-error.html
new file mode 100644
index 0000000..6a74ae8
--- /dev/null
+++ b/qc_app/templates/http-error.html
@@ -0,0 +1,18 @@
+{%extends "base.html"%}
+
+{%block title%}HTTP Error: {{exc.code}}{%endblock%}
+
+{%block contents%}
+<h1>{{exc.code}}: {{exc.description}}</h1>
+
+<div class="row">
+ <p>
+ You attempted to access {{request_url}} which failed with the following
+ error:
+ </p>
+</div>
+
+<div class="row">
+ <pre>{{trace}}</pre>
+</div>
+{%endblock%}