diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-10 17:17:39 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-10 17:17:39 -0800 |
commit | 04dbd8aafa479a496f7eb4c4e1dcb07253ebfa79 (patch) | |
tree | 9dad3803d21042d30568a9829350dba84733e32c /adenosine-pds/templates/error.html | |
parent | 582fcf863328840a09ff9ede919043ae266a2f87 (diff) | |
download | adenosine-04dbd8aafa479a496f7eb4c4e1dcb07253ebfa79.tar.gz adenosine-04dbd8aafa479a496f7eb4c4e1dcb07253ebfa79.zip |
pds: error HTML template, crash on mutex poisoned
Diffstat (limited to 'adenosine-pds/templates/error.html')
-rw-r--r-- | adenosine-pds/templates/error.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/adenosine-pds/templates/error.html b/adenosine-pds/templates/error.html new file mode 100644 index 0000000..dd19629 --- /dev/null +++ b/adenosine-pds/templates/error.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} + +{% block content %} +<center> +<h1>{{ status_code }}</h1> +<span style="font-size: larger;">{{ error_message }}</span> +</center> + +{% endblock %} |