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, 0 insertions, 18 deletions
diff --git a/qc_app/templates/http-error.html b/qc_app/templates/http-error.html
deleted file mode 100644
index 374fb86..0000000
--- a/qc_app/templates/http-error.html
+++ /dev/null
@@ -1,18 +0,0 @@
-{%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>{{"\n".join(trace)}}</pre>
-</div>
-{%endblock%}