summaryrefslogtreecommitdiff
path: root/talermerchantdemos/landing/templates/error.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'talermerchantdemos/landing/templates/error.html.j2')
-rw-r--r--talermerchantdemos/landing/templates/error.html.j213
1 files changed, 13 insertions, 0 deletions
diff --git a/talermerchantdemos/landing/templates/error.html.j2 b/talermerchantdemos/landing/templates/error.html.j2
new file mode 100644
index 0000000..009947c
--- /dev/null
+++ b/talermerchantdemos/landing/templates/error.html.j2
@@ -0,0 +1,13 @@
+{% extends "templates/base.html.j2" %}
+{% block main %}
+ <h1>{{ gettext("Error encountered") }}</h1>
+
+ <p>{{ message }}</p>
+
+ {% if stack %}
+ <p>{{gettext("Stack trace:")}}</p>
+ <pre>
+ {{ stack }}
+ </pre>
+ {% endif %}
+{% endblock main %}