diff options
author | 2018-03-01 18:58:25 +0000 | |
---|---|---|
committer | 2018-03-01 18:58:25 +0000 | |
commit | ec8aa293c0901009f3a8fb0501d5fbdec1f18568 (patch) | |
tree | f94b0b903cfee263180f404e430e866d34d91c08 /templates/errors | |
parent | noscript should use templated error (diff) |
Add safe so it is not escaped
Diffstat (limited to 'templates/errors')
-rw-r--r-- | templates/errors/error.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/errors/error.html b/templates/errors/error.html index d3adfd01..5845b915 100644 --- a/templates/errors/error.html +++ b/templates/errors/error.html @@ -52,7 +52,7 @@ <noscript> <h1>There was an issue processing your request</h1> - <p>{{ error_message }}</p> + <p>{{ error_message | safe }}</p> </noscript> </div> <script src="/static/js/500.js"></script> |