From 754e8f214b940e05298cb360ed829f5c685d55a5 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Thu, 25 Jul 2024 11:07:33 -0500 Subject: Rename module: qc_app --> uploader --- uploader/templates/http-error.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 uploader/templates/http-error.html (limited to 'uploader/templates/http-error.html') diff --git a/uploader/templates/http-error.html b/uploader/templates/http-error.html new file mode 100644 index 0000000..374fb86 --- /dev/null +++ b/uploader/templates/http-error.html @@ -0,0 +1,18 @@ +{%extends "base.html"%} + +{%block title%}HTTP Error: {{exc.code}}{%endblock%} + +{%block contents%} +

{{exc.code}}: {{exc.description}}

+ +
+

+ You attempted to access {{request_url}} which failed with the following + error: +

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